[Catalyst-commits] r10692 - Catalyst-Runtime/5.80/trunk/t

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Sat Jun 27 13:56:37 GMT 2009


Author: rafl
Date: 2009-06-27 13:56:36 +0000 (Sat, 27 Jun 2009)
New Revision: 10692

Modified:
   Catalyst-Runtime/5.80/trunk/t/aggregate.t
Log:
Don't screw the prove -l user too hard.

Modified: Catalyst-Runtime/5.80/trunk/t/aggregate.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/aggregate.t	2009-06-27 13:26:20 UTC (rev 10691)
+++ Catalyst-Runtime/5.80/trunk/t/aggregate.t	2009-06-27 13:56:36 UTC (rev 10692)
@@ -6,7 +6,12 @@
 use FindBin;
 use lib "$FindBin::Bin/lib";
 
-use Test::Aggregate;
+BEGIN {
+    unless (eval { require Test::Aggregate; Test::Aggregate->VERSION('0.35_05'); 1 }) {
+        require Test::More;
+        Test::More::plan(skip_all => 'Test::Aggregate 0.35_05 required for test aggregation');
+    }
+}
 
 my $tests = Test::Aggregate->new({
     dirs          => 't/aggregate',




More information about the Catalyst-commits mailing list