X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=040a5863b6d340c2b9ca5980570a5bb0cb5ab5cf;hb=9497137d21a07be7d2ee33a6b8d312bece39c74b;hp=04a9c36481a2695da07c95f67dc72b4817387e79;hpb=b7cd159308463e763f34aee8ac053999af540bbc;p=gitmo%2FMooseX-MetaDescription.git diff --git a/Makefile.PL b/Makefile.PL index 04a9c36..040a586 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,8 @@ use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.67; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; name 'MooseX-MetaDescription'; all_from 'lib/MooseX/MetaDescription.pm'; @@ -10,10 +12,14 @@ license 'perl'; requires 'Moose' => 0.40; # things the tests need -build_requires 'Test::More' => '0.62'; +test_requires 'Test::More' => '0.62'; +test_requires 'Test::Exception'; + +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Pod::Coverage'; tests('t/*.t'); -author_tests('t-author'); +author_tests 't-author'; WriteAll();