From: Karen Etheridge Date: Wed, 11 Sep 2013 17:44:36 +0000 (-0700) Subject: add some test prereqs X-Git-Tag: v1.000019~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e86dd03eba6f1a2bae12e2d6d24163bd11d2bab1;p=p5sagit%2FModule-Metadata.git add some test prereqs --- diff --git a/Makefile.PL b/Makefile.PL index 8717afd..407826e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,6 +3,8 @@ use warnings FATAL => 'all'; use ExtUtils::MakeMaker; use 5.006; +# TODO: convert to dzil and use [OnlyCorePrereqs], and possibly [DualLife] + (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( @@ -41,5 +43,23 @@ WriteMakefile( web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata', }, }, + prereqs => { + requires => { + test => { + 'Test::More' => 0, + 'Carp' => 0, + 'Config' => 0, + 'Cwd' => 0, + 'Data::Dumper' => 0, + 'Exporter' => 0, + 'File::Basename' => 0, + 'File::Find' => 0, + 'File::Path' => 0, + 'File::Spec' => 0, + 'File::Temp' => 0, + 'IO::File' => 0, + }, + }, + }, }, );