X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=c9fc2a88b52fd60d2c83222e7172a8879657405a;hb=HEAD;hp=8860481f6faf6fcb3014f6a7f64515edcd04111c;hpb=d5b7f727dd4b86f46096674f94c7d634b17b599c;p=scpubgit%2FApp-EzPz.git diff --git a/Makefile.PL b/Makefile.PL index 8860481..c9fc2a8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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, } );