error handling and tests therefore
[scpubgit/App-EzPz.git] / Makefile.PL
CommitLineData
d5b7f727 1use strict;
2use warnings FATAL => 'all';
3use 5.008001;
4use ExtUtils::MakeMaker;
5
fb960e0e 6my $full_test = $ENV{TEST_APP_EZPZ} ||= do {
7 prompt("Run integration tests? (y/n)", "n") eq "y"
8};
9
10if ($full_test) {
11 mkdir('test-setup');
12}
13
d5b7f727 14WriteMakefile(
15 NAME => 'App-EzPz',
16 VERSION => 0,
17 PREREQ_PM => {
18 Moo => 0,
19 'IO::All' => 0,
20 'Module::Runtime' => 0,
21 'Eval::WithLexicals' => 0,
22 'IPC::System::Simple' => 0,
23 strictures => 0,
0a0e9549 24 'File::Which' => 0,
25 'Capture::Tiny' => 0,
d5b7f727 26 }
27);