add some test prereqs
Karen Etheridge [Wed, 11 Sep 2013 17:44:36 +0000 (10:44 -0700)]
Makefile.PL

index 8717afd..407826e 100644 (file)
@@ -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,
+        },
+      },
+    },
   },
 );