[Catalyst-commits] r8352 - Catalyst-Runtime/5.80/branches/test_aggregate

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Thu Sep 4 09:16:07 BST 2008


Author: rafl
Date: 2008-09-04 09:16:07 +0100 (Thu, 04 Sep 2008)
New Revision: 8352

Modified:
   Catalyst-Runtime/5.80/branches/test_aggregate/Makefile.PL
Log:
Check for Test::Aggregate >= 0.34_01.

This is the first version to not mess with output and exit code when not even
running any tests.

Modified: Catalyst-Runtime/5.80/branches/test_aggregate/Makefile.PL
===================================================================
--- Catalyst-Runtime/5.80/branches/test_aggregate/Makefile.PL	2008-09-04 08:15:54 UTC (rev 8351)
+++ Catalyst-Runtime/5.80/branches/test_aggregate/Makefile.PL	2008-09-04 08:16:07 UTC (rev 8352)
@@ -34,7 +34,7 @@
 requires 'MRO::Compat';
 
 if (   ( exists $ENV{AGGREGATE_TESTS} && !$ENV{AGGREGATE_TESTS})
-    || (!exists $ENV{AGGREGATE_TESTS} && !can_use('Test::Aggregate'))) {
+    || (!exists $ENV{AGGREGATE_TESTS} && !can_use('Test::Aggregate', '0.34_01'))) {
     tests join q{ },
         grep { $_ ne 't/aggregate.t' }
         map  { glob } qw[t/*.t t/aggregate/*.t];




More information about the Catalyst-commits mailing list