[Catalyst-commits] r7048 - in Catalyst-Runtime/5.70/trunk: . t

matthewt at dev.catalyst.perl.org matthewt at dev.catalyst.perl.org
Tue Oct 23 23:09:59 GMT 2007


Author: matthewt
Date: 2007-10-23 23:09:58 +0100 (Tue, 23 Oct 2007)
New Revision: 7048

Modified:
   Catalyst-Runtime/5.70/trunk/Makefile.PL
   Catalyst-Runtime/5.70/trunk/t/02pod.t
   Catalyst-Runtime/5.70/trunk/t/03podcoverage.t
Log:
force pod coverage testing for authors

Modified: Catalyst-Runtime/5.70/trunk/Makefile.PL
===================================================================
--- Catalyst-Runtime/5.70/trunk/Makefile.PL	2007-10-23 03:01:48 UTC (rev 7047)
+++ Catalyst-Runtime/5.70/trunk/Makefile.PL	2007-10-23 22:09:58 UTC (rev 7048)
@@ -35,6 +35,8 @@
 
 if (-e 'inc/.author') {
   build_requires 'Test::Perl::Critic';
+  build_requires 'Test::Pod' => 1.14;
+  build_requires 'Test::Pod::Coverage' => 1.04;
 
   if ($^O eq 'darwin') { 
       makemaker_args(dist => { PREOP => 'if [ "$$COPY_EXTENDED_ATTRIBUTES_DISABLE" != "true" ]; then'.

Modified: Catalyst-Runtime/5.70/trunk/t/02pod.t
===================================================================
--- Catalyst-Runtime/5.70/trunk/t/02pod.t	2007-10-23 03:01:48 UTC (rev 7047)
+++ Catalyst-Runtime/5.70/trunk/t/02pod.t	2007-10-23 22:09:58 UTC (rev 7048)
@@ -2,6 +2,6 @@
 
 eval "use Test::Pod 1.14";
 plan skip_all => 'Test::Pod 1.14 required' if $@;
-plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -f 'MANIFEST.SKIP';
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -e 'inc/.author';
 
 all_pod_files_ok();

Modified: Catalyst-Runtime/5.70/trunk/t/03podcoverage.t
===================================================================
--- Catalyst-Runtime/5.70/trunk/t/03podcoverage.t	2007-10-23 03:01:48 UTC (rev 7047)
+++ Catalyst-Runtime/5.70/trunk/t/03podcoverage.t	2007-10-23 22:09:58 UTC (rev 7048)
@@ -2,6 +2,6 @@
 
 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} || -f 'MANIFEST.SKIP';
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -e 'inc/.author';
 
 all_pod_coverage_ok();




More information about the Catalyst-commits mailing list