X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Author.PL;h=c2f52d96178689905aefa88f6624d084fbe059d3;hb=2e941adaf9815086c591bdc39e616b9c19502878;hp=f13e291d61b2d19f713bae4f3ac7b43deee20800;hpb=a48911904f968b5f66cbcc1bfe3731939f95f338;p=p5sagit%2FModule-Metadata.git diff --git a/Author.PL b/Author.PL index f13e291..c2f52d9 100644 --- a/Author.PL +++ b/Author.PL @@ -3,7 +3,9 @@ use warnings FATAL => 'all'; { package MY; - push @ExtUtils::MakeMaker::Overridable, 'find_tests'; + { + no warnings 'once'; push @ExtUtils::MakeMaker::Overridable, 'find_tests'; + } sub find_tests { shift->SUPER::find_tests.' xt/*.t'; } @@ -44,6 +46,8 @@ manifest_include( 'lib' => '.pm', 't' => '.t', 't/lib' => '.pm', + 'xt' => '.t', + 'xt/lib' => '.pm', '' => '.PL', '' => qr{Changes|MANIFEST|README|META\.yml} );