todo list
[scpubgit/App-EzPz.git] / Makefile.PL
index 8860481..c9fc2a8 100644 (file)
@@ -3,16 +3,27 @@ use warnings FATAL => 'all';
 use 5.008001;
 use ExtUtils::MakeMaker;
 
+my $full_test = $ENV{TEST_APP_EZPZ} ||= do {
+  prompt("Run integration tests? (y/n)", "n") eq "y"
+};
+
+if ($full_test) {
+  mkdir('test-setup');
+}
+
 WriteMakefile(
   NAME => 'App-EzPz',
   VERSION => 0,
   PREREQ_PM => {
-    Moo => 0,
-    'IO::All' => 0,
-    'Module::Runtime' => 0,
-    'Eval::WithLexicals' => 0,
-    'IPC::System::Simple' => 0,
-    strictures => 0,
-    'File::Which' => 0
+    Moo => 0.91012,
+    'IO::All' => 0.44,
+    'Module::Runtime' => 0.013,
+    'Eval::WithLexicals' => 1.002,
+    'IPC::System::Simple' => 1.21,
+    strictures => 1.004001,
+    'File::Which' => 1.09,
+    'Capture::Tiny' => 0.18,
+    'Web::Simple' => 0.18,
+    'HTML::Zoom' => 0.009006,
   }
 );