]> git.vpit.fr Git - perl/modules/Sub-Op.git/commitdiff
Don't test POD coverage for Files.pm
authorVincent Pit <vince@profvince.com>
Sat, 2 Jan 2010 17:26:05 +0000 (18:26 +0100)
committerVincent Pit <vince@profvince.com>
Sat, 2 Jan 2010 17:26:05 +0000 (18:26 +0100)
t/92-pod-coverage.t

index 81c83e309849d0fb1ee931416fd736ef10d361dc..ae586446f46c12be8ead34a5e7c7374e4390456d 100644 (file)
@@ -5,12 +5,16 @@ use warnings;
 
 use Test::More;
 
-eval "use Test::Pod::Coverage 1.04";
+eval "use Test::Pod::Coverage 1.04 (tests => 1)";
 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
-all_pod_coverage_ok({
- also_private => [
-  qr/^_/,
-  qr/^CLONE(_SKIP)?$/,
-  'dl_load_flags',
- ],
-});
+pod_coverage_ok(
+ 'Sub::Op',
+ {
+  also_private => [
+   qr/^_/,
+   qr/^CLONE(_SKIP)?$/,
+   'dl_load_flags',
+  ],
+ },
+ 'Sub::Op is covered',
+);