X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=Makefile.PL;h=f9c1517464ce58d083371f6d066cf0fb2f151807;hp=c26b75178695250c6825075b0246ba6384c59252;hb=ad20156284763b7d6019af2279f24e1af097f3be;hpb=a09601ab6f3b4b6efb78d3f24a050fec92dcf02f diff --git a/Makefile.PL b/Makefile.PL index c26b751..f9c1517 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,6 +2,9 @@ use strict; use warnings; use inc::Module::Install; +system($^X, 'author/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0 + or warn "Cannot generate Mouse::Tiny: $!"; + name 'Mouse'; all_from 'lib/Mouse.pm'; @@ -13,7 +16,9 @@ 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; @@ -32,7 +37,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,7 +53,10 @@ sub create_moose_compatibility_test { # some test does not pass... currently skip it. my %SKIP_TEST = ( '016-trigger.t' => "trigger's argument is incompatble :(", - '010-isa-or.t' => 'Mouse has a [BUG]', + '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", @@ -67,7 +74,8 @@ 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 /with_moose/; # tests with Moose + return if /100_bugs/; # some tests require Mouse specific files return if /deprecated/; my $basename = File::Basename::basename($_);