Now that all the .pod files have a package statement, we only extract tests if we...
[gitmo/Moose.git] / Makefile.PL
CommitLineData
38bf2a25 1use strict;
2use warnings;
3
4use Config;
5use ExtUtils::MakeMaker;
6
004ac8d9 7use lib 'inc';
8
9use MMHelper;
10
38bf2a25 11warn <<'EOF';
12
13 ********************************* WARNING **********************************
14
d2aeefa7 15 This module uses Dist::Zilla for development. This Makefile.PL will let you
16 run the tests, but you are encouraged to install Dist::Zilla and the needed
38bf2a25 17 plugins if you intend on doing any serious hacking.
18
19 ****************************************************************************
20
21EOF
22
004ac8d9 23eval MMHelper::my_package_subs();
38bf2a25 24
25WriteMakefile(
26 NAME => 'Moose',
004ac8d9 27 test => { TESTS => 't/*.t t/*/*.t' },
6bf5d14d 28 MMHelper::mm_args('dev'),
38bf2a25 29);