X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=e95650f34775892aad1ca9a3b47ce68e4da6b6c4;hb=e3e1a958a4891c7109c50cd513f9bafe7cbcb1de;hp=256526a6b5727c1f1d43d73beb7ec649a3c218e8;hpb=09b5b21b64581bafb4a8b619e74b8ff0d3292894;p=gitmo%2FMooseX-MetaDescription.git diff --git a/Makefile.PL b/Makefile.PL index 256526a..e95650f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,8 @@ use strict; use warnings; use inc::Module::Install; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; name 'MooseX-MetaDescription'; all_from 'lib/MooseX/MetaDescription.pm'; @@ -12,7 +14,11 @@ requires 'Moose' => 0.40; # things the tests need build_requires 'Test::More' => '0.62'; +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Pod::Coverage'; + tests('t/*.t'); +author_tests 't-author'; WriteAll();