[Catalyst-commits] r13359 - Catalyst-Authentication-Store-DBIx-Class/trunk/t

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Wed Jun 16 21:10:25 GMT 2010


Author: rafl
Date: 2010-06-16 22:10:25 +0100 (Wed, 16 Jun 2010)
New Revision: 13359

Modified:
   Catalyst-Authentication-Store-DBIx-Class/trunk/t/01-pod.t
   Catalyst-Authentication-Store-DBIx-Class/trunk/t/02-pod-coverage.t
Log:
Stop running pod tests for users

Modified: Catalyst-Authentication-Store-DBIx-Class/trunk/t/01-pod.t
===================================================================
--- Catalyst-Authentication-Store-DBIx-Class/trunk/t/01-pod.t	2010-06-16 19:55:08 UTC (rev 13358)
+++ Catalyst-Authentication-Store-DBIx-Class/trunk/t/01-pod.t	2010-06-16 21:10:25 UTC (rev 13359)
@@ -1,6 +1,10 @@
-#!perl -T
+#!perl
 
 use Test::More;
+
+plan skip_all => 'Set TEST_POD to enable pod tests' unless $ENV{TEST_POD};
+
 eval "use Test::Pod 1.14";
 plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+
 all_pod_files_ok();

Modified: Catalyst-Authentication-Store-DBIx-Class/trunk/t/02-pod-coverage.t
===================================================================
--- Catalyst-Authentication-Store-DBIx-Class/trunk/t/02-pod-coverage.t	2010-06-16 19:55:08 UTC (rev 13358)
+++ Catalyst-Authentication-Store-DBIx-Class/trunk/t/02-pod-coverage.t	2010-06-16 21:10:25 UTC (rev 13359)
@@ -1,6 +1,10 @@
-#!perl -T
+#!perl
 
 use Test::More;
+
+plan skip_all => 'Set TEST_POD to enable pod tests' unless $ENV{TEST_POD};
+
 eval "use Test::Pod::Coverage 1.04";
 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
+
 all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::CountParents' });




More information about the Catalyst-commits mailing list