X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=39b0fe727b620d46486d0a7c3550871917684a68;hb=8d59c7239b90bb75b0187decbed09c6952e2b4a5;hp=86154c9c697f885d28825e9d19e19cbf1ebf6098;hpb=179ac6cc0c1739d68f32ce43fafe59d342246bc6;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 86154c9..39b0fe7 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,10 +13,14 @@ requires 'Scalar::Util' => 1.14; test_requires 'Test::More' => 0.88; test_requires 'Test::Exception' => 0.27; -test_requires 'Test::Output' => 0.16; +# test_requires 'Test::Output' => 0.16; # too many dependencies! + +include 'Test::Exception'; # work around 0.27_0x (its use of diehook might be wrong) recommends 'MRO::Compat' if $] < 5.010; +makemaker_args PL_FILES => { 'author/generate-mouse-tiny.pl' => 'lib/Mouse/Tiny.pm' }; + if ($Module::Install::AUTHOR) { local @INC = ('lib', @INC); require 'lib/Mouse/Spec.pm'; @@ -32,7 +36,6 @@ if ($Module::Install::AUTHOR) { } else { print "you don't have Moose $require_version. skipping moose compatibility test\n"; } - system("author/generate-mouse-tiny.pl"); } WriteAll check_nmake => 0; @@ -49,13 +52,15 @@ sub create_moose_compatibility_test { # some test does not pass... currently skip it. my %SKIP_TEST = ( '016-trigger.t' => "trigger's argument is incompatble :(", - '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"', + '010-isa-or.t' => "Mouse has a [BUG]", + + '052-undefined-type-in-union.t' => "Mouse accepts undefined type as a member of union types", + '054-anon-leak.t' => 'Moose has memory leaks', + '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' => 't/lib/* classes are not Moose classes/roles', ); @@ -69,6 +74,7 @@ sub create_moose_compatibility_test { return if /failing/; # skip tests in failing/ directories which are Moose specific return if /100_with_moose/; # tests with Moose + return if /deprecated/; my $basename = File::Basename::basename($_); return if $basename =~ /^\./;