summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/pod.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/pod.t')
-rw-r--r--cpan/Test-Simple/t/pod.t7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpan/Test-Simple/t/pod.t b/cpan/Test-Simple/t/pod.t
new file mode 100644
index 0000000000..ac55c162df
--- /dev/null
+++ b/cpan/Test-Simple/t/pod.t
@@ -0,0 +1,7 @@
+#!/usr/bin/perl -w
+
+use Test::More;
+plan skip_all => "POD tests skipped unless AUTHOR_TESTING is set" unless $ENV{AUTHOR_TESTING};
+my $test_pod = eval "use Test::Pod 1.00; 1";
+plan skip_all => "Test::Pod 1.00 required for testing POD" unless $test_pod;
+all_pod_files_ok();