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.t |
Diffstat (limited to 't/pod.t')
-rw-r--r-- | t/pod.t | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!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 +my $min_tp = 1.22; +eval "use Test::Pod $min_tp"; +plan skip_all => "Test::Pod $min_tp required for testing POD" if $@; + +all_pod_files_ok(); |