adding Test::Pod::Coverage tests
[gitmo/MooseX-MetaDescription.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install;
4
5 name 'MooseX-MetaDescription';
6 all_from 'lib/MooseX/MetaDescription.pm';
7 license 'perl';
8
9 # prereqs
10 requires 'Moose' => 0.40;
11
12 # things the tests need
13 build_requires 'Test::More' => '0.62';
14
15 tests('t/*.t');
16
17 WriteAll();
18