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

index 4bbfa36..3aef0d0 100755 (executable)
@@ -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;