X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=e95650f34775892aad1ca9a3b47ce68e4da6b6c4;hb=8f56034de771bc7cc37580c099f148a8fe6a3260;hp=256526a6b5727c1f1d43d73beb7ec649a3c218e8;hpb=f1c9e103880a078d6d95d99491034d64951e7b13;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();