X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=c016f5ae54db239e9093e72f51c40bd24d8eef18;hb=3245a7701a8e15f08a6a881c58055dfd95c6cf33;hp=cb27dfee0f1a4b1b0084d86453cc098fd4bf79ec;hpb=9c74923de2304b8c8f0a7a2faa0854ad9b4d3a92;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index cb27dfe..c016f5a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -63,11 +63,13 @@ test_requires 'Test::More' => '0.88'; test_requires 'Data::Dump'; # aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate and a Test::Simple it works with is available -if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::Aggregate', '0.35_05')) { - author_requires('Test::Aggregate', '0.35_05'); +if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::Aggregate', '0.364')) { + author_requires('Test::Aggregate', '0.364'); author_requires('Test::Simple', '0.88'); + open my $fh, '>', '.aggregating'; } else { + unlink '.aggregating'; tests join q{ }, grep { $_ ne 't/aggregate.t' } map { glob } qw[t/*.t t/aggregate/*.t];