[Catalyst-commits] r10690 - Catalyst-Runtime/5.80/trunk

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Sat Jun 27 13:26:01 GMT 2009


Author: rafl
Date: 2009-06-27 13:26:01 +0000 (Sat, 27 Jun 2009)
New Revision: 10690

Modified:
   Catalyst-Runtime/5.80/trunk/Makefile.PL
Log:
Bump deps for test aggregation.

Modified: Catalyst-Runtime/5.80/trunk/Makefile.PL
===================================================================
--- Catalyst-Runtime/5.80/trunk/Makefile.PL	2009-06-27 12:38:40 UTC (rev 10689)
+++ Catalyst-Runtime/5.80/trunk/Makefile.PL	2009-06-27 13:26:01 UTC (rev 10690)
@@ -43,9 +43,10 @@
 test_requires 'Class::Data::Inheritable';
 test_requires 'Test::Exception';
 
-# aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate is available
-if ($ENV{AGGREGATE_TESTS} && can_use('Test::Aggregate', '0.34_01')) {
-    test_requires('Test::Aggregate', '0.34_01');
+# 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')) {
+    test_requires('Test::Aggregate', '0.35_05');
+    test_requires('Test::Simple', '0.88');
 }
 else {
     tests join q{ },




More information about the Catalyst-commits mailing list