[Jifty-commit] r4192 - in apps/CASPlus/trunk: t

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Oct 2 16:18:16 EDT 2007


Author: sterling
Date: Tue Oct  2 16:18:15 2007
New Revision: 4192

Added:
   apps/CASPlus/trunk/t/01-pod.t
   apps/CASPlus/trunk/t/02-pod-coverage.t
Modified:
   apps/CASPlus/trunk/   (props changed)

Log:
 r12805 at dynpc145:  andrew | 2007-10-02 14:59:06 -0500
 Adding tests for POD errors and POD coverage.


Added: apps/CASPlus/trunk/t/01-pod.t
==============================================================================
--- (empty file)
+++ apps/CASPlus/trunk/t/01-pod.t	Tue Oct  2 16:18:15 2007
@@ -0,0 +1,7 @@
+use strict;
+use warnings;
+
+use Test::More;
+eval "use Test::Pod 1.00";
+plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
+all_pod_files_ok();

Added: apps/CASPlus/trunk/t/02-pod-coverage.t
==============================================================================
--- (empty file)
+++ apps/CASPlus/trunk/t/02-pod-coverage.t	Tue Oct  2 16:18:15 2007
@@ -0,0 +1,7 @@
+use strict;
+use warnings;
+
+use Test::More;
+eval "use Test::Pod::Coverage 1.00";
+plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
+all_pod_coverage_ok();


More information about the Jifty-commit mailing list