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

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Fri Dec 5 19:29:44 GMT 2008


Author: rafl
Date: 2008-12-05 19:29:44 +0000 (Fri, 05 Dec 2008)
New Revision: 8758

Modified:
   Catalyst-Runtime/5.80/trunk/t/03podcoverage.t
Log:
Don't run the pod coverage tests unless Pod::Coverage 0.19 is available.

Modified: Catalyst-Runtime/5.80/trunk/t/03podcoverage.t
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/03podcoverage.t	2008-12-05 18:49:28 UTC (rev 8757)
+++ Catalyst-Runtime/5.80/trunk/t/03podcoverage.t	2008-12-05 19:29:44 UTC (rev 8758)
@@ -1,5 +1,7 @@
 use Test::More;
 
+eval "use Pod::Coverage 0.19";
+plan skip_all => 'Pod::Coverage 0.19 required' if $@;
 eval "use Test::Pod::Coverage 1.04";
 plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
 plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -e 'inc/.author';




More information about the Catalyst-commits mailing list