projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
dc4a7ab
)
Skip squirrel tests when munging s/Mouse/Moose/
Shawn M Moore [Sun, 21 Dec 2008 23:16:08 +0000 (23:16 +0000)]
author/munge-tests-for-moose.pl
patch
|
blob
|
blame
|
history
diff --git
a/author/munge-tests-for-moose.pl
b/author/munge-tests-for-moose.pl
index
4bbfa36
..
3aef0d0
100755
(executable)
--- a/
author/munge-tests-for-moose.pl
+++ b/
author/munge-tests-for-moose.pl
@@
-7,6
+7,9
@@
BEGIN {
$^I = '';
}
+next if $ARGV =~ /squirrel/i; # Squirrel tests are for both Moose and Mouse
+
s/Mouse/Moose/g;
+
s/Moose::(load_class|is_class_loaded)/Class::MOP::$1/g;