Make author tests forced
[gitmo/MooseX-MetaDescription.git] / Makefile.PL
CommitLineData
003eeeb9 1use strict;
2use warnings;
3use inc::Module::Install;
e3e1a958 4use Module::Install::AuthorRequires;
5use Module::Install::AuthorTests;
003eeeb9 6
f1c9e103 7name 'MooseX-MetaDescription';
003eeeb9 8all_from 'lib/MooseX/MetaDescription.pm';
9license 'perl';
10
11# prereqs
12requires 'Moose' => 0.40;
13
14# things the tests need
f1c9e103 15build_requires 'Test::More' => '0.62';
003eeeb9 16
e3e1a958 17author_requires 'Test::Pod' => '1.14';
18author_requires 'Test::Pod::Coverage';
19
003eeeb9 20tests('t/*.t');
e3e1a958 21author_tests 't-author';
003eeeb9 22
23WriteAll();
24