X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=Makefile.PL;h=80baa6eeeef9c2b8dcecb4c7c485a5735fb7525e;hp=2f3193fe4e5cb49457772fe59540125e2a0fe8c5;hb=ff6870694bb440c13826e0f0fa25e760247fd24e;hpb=1763d4d69e986002fc797b80e42db3cf565b3f6c diff --git a/Makefile.PL b/Makefile.PL index 2f3193f..80baa6e 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,5 @@ use inc::Module::Install; +use 5.008; name 'Mouse'; all_from 'lib/Mouse.pm'; @@ -9,8 +10,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,6 +24,7 @@ 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; @@ -33,37 +35,40 @@ sub create_moose_compatibility_test { require File::Spec; require File::Basename; + print "Creating xt/compatibility/* ...\n"; + # 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', ); File::Find::find( { wanted => sub { return unless -f $_; + + return if /failing/; # skip tests in failing/ directories + my $basename = File::Basename::basename($_); return if $basename =~ /^\./; return if $SKIP_TEST{$basename}; - + my $dirname = File::Basename::dirname($_); my $tmpdir = File::Spec->catfile('xt', 'compatibility', $dirname); - File::Path::make_path($tmpdir); + File::Path::mkpath($tmpdir); my $tmpfile = File::Spec->catfile($tmpdir, $basename); open my $wfh, '>', $tmpfile or die $!;