X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=244942074373bf6ab6a6debeec69c584f9a8a67f;hb=7b133c927969b2e9233a51c6be5caed54c88915e;hp=c694d47b87386b40daaf7076a83c51a893991555;hpb=314fe3048f1aa8eb5d77b32040b4355b19a0c676;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index c694d47..2449420 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,7 @@ +use strict; +use warnings; use inc::Module::Install; +use 5.008; name 'Mouse'; all_from 'lib/Mouse.pm'; @@ -9,8 +12,8 @@ tests 't/*.t t/*/*.t'; # > Fixed looks_like_number(undef) to return false for perl >= 5.009002 requires 'Scalar::Util' => 1.14; -build_requires 'Test::Exception'; -build_requires 'Test::More'; +build_requires 'Test::Exception' => 0.21; +build_requires 'Test::More' => 0.80; if ($Module::Install::AUTHOR) { if (eval "package foo; use Moose; 1;") { @@ -23,52 +26,81 @@ if ($Module::Install::AUTHOR) { } else { print "you don't have a moose. skipping moose compatibility test\n"; } + system("author/generate-mouse-tiny.pl"); } auto_include; WriteAll; sub create_moose_compatibility_test { - require Path::Class; - Path::Class->import('file', 'dir'); + require File::Path; + require File::Spec; + require File::Basename; + + print "Creating compatibility tests in xt/compatibility/* ...\n"; + + File::Path::rmtree(File::Spec->catfile('xt', 'compatibility')); # some test does not pass... currently skip it. my %SKIP_TEST = ( '016-trigger.t' => "trigger's argument is incompatble :(", - '020-load-class.t' => "&Moose::is_class_loaded doesn't exists", - '019-handles.t' => 'incompatible', - '025-more-isa.t' => 'Class::MOP::is_class_loaded is not compatible with Mouse::is_class_loaded', '029-new.t' => 'Class->new(undef) incompatible', '010-isa-or.t' => 'Mouse has a [BUG]', '044-attribute-metaclass.t' => 'Moose::Meta::Attribute does not have a "create"', '047-attribute-metaclass-role.t' => 'Moose::Meta::Attribute does not have a "create"', '201-squirrel.t' => 'skip Squirrel', '202-squirrel-role.t' => 'Squirrel is ...', - '400-define-role.t' => 'incompatibility', '600-tiny-tiny.t' => "Moose doesn't support ::Tiny", '601-tiny-mouse.t' => "Moose doesn't support ::Tiny", '602-mouse-tiny.t' => "Moose doesn't support ::Tiny", - '031_roles_applied_in_create.t' => 'wtf?', + '031_roles_applied_in_create.t' => 't/lib/* classes are not Moose classes/roles', ); - dir('t')->recurse( - callback => sub { - my $f = shift; - return if $f->is_dir; - return if $f =~ /\.sw[po]$/; - return if $SKIP_TEST{$f->basename}; - - my $dstfile = dir('xt', 'compatibility')->file($f); - $dstfile->dir->mkpath(); - - my $fh = $dstfile->openw(); - $fh->print(do { - local $_ = $f->slurp; - s/Mouse/Moose/g; - $_; - }); - $fh->close(); + my @compat_tests; + + File::Find::find( + { + wanted => sub { + return unless -f $_; + + return if /failing/; # skip tests in failing/ directories + + my $basename = File::Basename::basename($_); + return if $basename =~ /^\./; + + if(exists $SKIP_TEST{$basename}){ + print "# skip $basename because: $SKIP_TEST{$basename}\n"; + return; + } + + my $dirname = File::Basename::dirname($_); + + my $tmpdir = File::Spec->catfile('xt', 'compatibility', $dirname); + File::Path::mkpath($tmpdir); + + my $tmpfile = File::Spec->catfile($tmpdir, $basename); + open my $wfh, '>', $tmpfile or die $!; + print $wfh do { + my $src = do { + open my $rfh, '<', $_ or die $!; + my $s = do { local $/; <$rfh> }; + close $rfh; + $s; + }; + $src =~ s/Mouse::is_class_loaded/Class::MOP::is_class_loaded/g; + $src =~ s/Mouse::load_class/Class::MOP::load_class/g; + $src =~ s/Mouse/Moose/g; + $src; + }; + close $wfh; + push @compat_tests, $tmpfile; + }, + no_chdir => 1 }, + 't', ); + print "Compatibility tests created.\n"; + + clean_files "@compat_tests"; }