X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=9d8bc437b82a291d5d17f52fcaac61268241e665;hb=f1c70cbe8ab21dd89f564689ef9e20f6fbb82fea;hp=8344d3a2d5460868849a6a22fafdb818bf6c77fd;hpb=eb88905f17a3087b826253807b2e4bc839a977d8;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 8344d3a..9d8bc43 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,7 +13,11 @@ 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; if ($Module::Install::AUTHOR) { local @INC = ('lib', @INC); @@ -47,15 +51,12 @@ 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"', - '201-squirrel.t' => 'skip Squirrel', - '202-squirrel-role.t' => 'Squirrel is ...', + '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', ); @@ -66,7 +67,10 @@ sub create_moose_compatibility_test { wanted => sub { return unless -f $_; - return if /failing/; # skip tests in failing/ directories + 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 =~ /^\./;