Add the script I've been using to munge tests to run against Moose
[gitmo/Mouse.git] / author / munge-tests-for-moose.pl
CommitLineData
dc4a7abe 1#!/usr/bin/env perl -pl
2use strict;
3use warnings;
4
5BEGIN {
6 @ARGV = glob('t/*.t t/*/*.t');
7 $^I = '';
8}
9
10s/Mouse/Moose/g;
11s/Moose::(load_class|is_class_loaded)/Class::MOP::$1/g;
12