[Catalyst-commits] r11413 - in trunk/Catalyst-Plugin-Server: . t
kane at dev.catalyst.perl.org
kane at dev.catalyst.perl.org
Fri Sep 25 10:39:47 GMT 2009
Author: kane
Date: 2009-09-25 10:39:47 +0000 (Fri, 25 Sep 2009)
New Revision: 11413
Modified:
trunk/Catalyst-Plugin-Server/
trunk/Catalyst-Plugin-Server/t/991_pod_coverage.t
Log:
r8435 at myriad-wifi: kane | 2009-09-25 12:38:59 +0200
* fix multiple "plan" statements
Property changes on: trunk/Catalyst-Plugin-Server
___________________________________________________________________
Name: svk:merge
- 8a9521aa-ff93-41d6-9f87-b05cafcdab40:/local/cat/Catalyst-Plugin-Server:6098
e5869dfe-760d-0410-9433-71cdb9993b4e:/local/Catalyst-Plugin-Server:7854
+ 8a9521aa-ff93-41d6-9f87-b05cafcdab40:/local/cat/Catalyst-Plugin-Server:8435
e5869dfe-760d-0410-9433-71cdb9993b4e:/local/Catalyst-Plugin-Server:7854
Modified: trunk/Catalyst-Plugin-Server/t/991_pod_coverage.t
===================================================================
--- trunk/Catalyst-Plugin-Server/t/991_pod_coverage.t 2009-09-25 10:39:42 UTC (rev 11412)
+++ trunk/Catalyst-Plugin-Server/t/991_pod_coverage.t 2009-09-25 10:39:47 UTC (rev 11413)
@@ -1,4 +1,4 @@
-use Test::More 'no_plan';
+use Test::More;
BEGIN {
chdir 't' if -d 't';
@@ -6,8 +6,9 @@
}
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};
+plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' if not $ENV{TEST_POD};
+plan 'no_plan';
### XXX this looks in lib/, and that translates to t/lib, which is the
### wrong dir. So we find our modules explicitly
More information about the Catalyst-commits
mailing list