X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Makefile.PL;h=8dbd962a3c61916b094c50eac851f4bf641bdce3;hp=fc26f9778778a590165ba3055c4133fa0e704fe7;hb=e8e8895a9f69e9438fd2278db03e75fa303f7532;hpb=ff9ac86d381410cde5fcdb946a1bfd16d9a41e2e diff --git a/Makefile.PL b/Makefile.PL index fc26f97..8dbd962 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -57,11 +57,13 @@ test_requires 'Test::Exception'; test_requires 'Test::More' => '0.88'; # 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];