Version 0.06
[gitmo/MooseX-MetaDescription.git] / Makefile.PL
index 256526a..040a586 100644 (file)
@@ -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();