X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=040a5863b6d340c2b9ca5980570a5bb0cb5ab5cf;hb=HEAD;hp=256526a6b5727c1f1d43d73beb7ec649a3c218e8;hpb=f1c9e103880a078d6d95d99491034d64951e7b13;p=gitmo%2FMooseX-MetaDescription.git diff --git a/Makefile.PL b/Makefile.PL index 256526a..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,9 +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'; WriteAll();