rearranging. need to redo with dzil
Todd Hepler [Mon, 26 Mar 2012 20:07:12 +0000 (15:07 -0500)]
xt/pod-coverage.t [new file with mode: 0644]
xt/pod.t [new file with mode: 0644]

diff --git a/xt/pod-coverage.t b/xt/pod-coverage.t
new file mode 100644 (file)
index 0000000..20381d2
--- /dev/null
@@ -0,0 +1,10 @@
+#!perl
+
+use warnings FATAL => 'all';
+use strict;
+use Test::More;
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all =>
+    "Test::Pod::Coverage 1.04 required for testing POD coverage"
+    if ($@);
+all_pod_coverage_ok();
diff --git a/xt/pod.t b/xt/pod.t
new file mode 100644 (file)
index 0000000..5d9a6be
--- /dev/null
+++ b/xt/pod.t
@@ -0,0 +1,8 @@
+#!perl
+
+use warnings FATAL => 'all';
+use strict;
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();