diff options
author | jake <jake@jakes-mail.top> | 2022-09-03 17:13:08 -0400 |
---|---|---|
committer | jake <jake@jakes-mail.top> | 2022-09-03 17:13:08 -0400 |
commit | 934fd7f7c56cb22173d32dcd7ffb1389cddd2011 (patch) | |
tree | e32f575f86e0dce69bfc4c02993ba64fe68c2a44 /t/pod-coverage.t |
Diffstat (limited to 't/pod-coverage.t')
-rw-r--r-- | t/pod-coverage.t | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/t/pod-coverage.t b/t/pod-coverage.t new file mode 100644 index 0000000..971a44f --- /dev/null +++ b/t/pod-coverage.t @@ -0,0 +1,24 @@ +#!perl +use 5.010; +use strict; +use warnings; +use Test::More; + +unless ( $ENV{RELEASE_TESTING} ) { + plan( skip_all => "Author tests not required for installation" ); +} + +# Ensure a recent version of Test::Pod::Coverage +my $min_tpc = 1.08; +eval "use Test::Pod::Coverage $min_tpc"; +plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage" + if $@; + +# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version, +# but older versions don't recognize some common documentation styles +my $min_pc = 0.18; +eval "use Pod::Coverage $min_pc"; +plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" + if $@; + +all_pod_coverage_ok(); |