diff options
-rw-r--r-- | MANIFEST | 2 | ||||
-rw-r--r-- | t/05-pod.t | 4 | ||||
-rw-r--r-- | t/10-pod-coverage.t | 4 |
3 files changed, 10 insertions, 0 deletions
@@ -3,4 +3,6 @@ lib/Hal/Cdroms.pm Makefile.PL MANIFEST t/00basic.t +t/05-pod.t +t/10-pod-coverage.t META.yml Module meta-data (added by MakeMaker) diff --git a/t/05-pod.t b/t/05-pod.t new file mode 100644 index 0000000..437887a --- /dev/null +++ b/t/05-pod.t @@ -0,0 +1,4 @@ +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(); diff --git a/t/10-pod-coverage.t b/t/10-pod-coverage.t new file mode 100644 index 0000000..2c5ca56 --- /dev/null +++ b/t/10-pod-coverage.t @@ -0,0 +1,4 @@ +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(); |