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';
# 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();
use warnings;
use Test::More;
-eval "use Test::Pod::Coverage";
-plan skip_all => "Test::Pod::Coverage required for testing POD Coverage" if $@;
+use Test::Pod::Coverage;
all_pod_coverage_ok();