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