X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8dbd962a3c61916b094c50eac851f4bf641bdce3;hb=529d5abc240ed8f626afd119417838274b8501f2;hp=47e26c0f340768efc9073051c1e90ab9a5612700;hpb=0de7c4a458cb3d2420f20481ed5cddd20eb5d800;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index 47e26c0..8dbd962 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -20,7 +20,7 @@ requires 'B::Hooks::EndOfScope' => '0.08'; requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00903'; requires 'Class::MOP' => '0.95'; requires 'Moose' => '1.03'; -requires 'MooseX::MethodAttributes::Inheritable' => '0.19'; +requires 'MooseX::MethodAttributes::Inheritable' => '0.24'; requires 'MooseX::Role::WithOverloading' => '0.05'; requires 'Carp'; requires 'Class::C3::Adopt::NEXT' => '0.07'; @@ -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];