- POD coverage tests
authorplobbes <plobbes>
Sun, 4 Mar 2007 04:14:53 +0000 (04:14 +0000)
committerplobbes <plobbes>
Sun, 4 Mar 2007 04:14:53 +0000 (04:14 +0000)
t/pod-coverage.t [new file with mode: 0644]

diff --git a/t/pod-coverage.t b/t/pod-coverage.t
new file mode 100644 (file)
index 0000000..e2715fd
--- /dev/null
@@ -0,0 +1,10 @@
+#!/usr/bin/perl
+
+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();