diff options
-rw-r--r-- | Build.PL | 1 | ||||
-rw-r--r-- | t/05-pod-compile.t (renamed from t/10-pod-coverage.t) | 0 | ||||
-rw-r--r-- | t/06-pod-coverage.t | 12 |
3 files changed, 13 insertions, 0 deletions
@@ -11,6 +11,7 @@ my $build = Module::Build->new( 'Test::MockObject' => 0, 'Test::More' => 0, 'Test::Pod' => 0, + 'Test::Pod::Coverage' => 0, }, license => 'unrestricted', module_name => 'App::Raps2', diff --git a/t/10-pod-coverage.t b/t/05-pod-compile.t index 3f6ae1a..3f6ae1a 100644 --- a/t/10-pod-coverage.t +++ b/t/05-pod-compile.t diff --git a/t/06-pod-coverage.t b/t/06-pod-coverage.t new file mode 100644 index 0000000..a3e35eb --- /dev/null +++ b/t/06-pod-coverage.t @@ -0,0 +1,12 @@ +#!/usr/bin/env 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(); |