X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=6800f727dfcc9fe1b97a5520be6f919a20598f61;hb=b842ace0d446cc7e87c823e72fd74f68d495142b;hp=bc320e18e40e8272506a73cea1c3b335c420520b;hpb=3f9d4c2b0a9fcde78357124e0990823f5f15f44f;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index bc320e1..6800f72 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -39,6 +39,8 @@ if ($Module::Install::AUTHOR) { } } +clean_files 'lib/Mouse/Tiny.pm'; + WriteAll check_nmake => 0; sub create_moose_compatibility_test { @@ -53,7 +55,7 @@ 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]", + '810-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', @@ -74,7 +76,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($_);