pod.t 301 B

123456789101112131415
  1. #!perl -T
  2. use strict;
  3. use warnings;
  4. use Test::More;
  5. unless ( $ENV{RELEASE_TESTING} ) {
  6. plan( skip_all => "Author tests not required for installation" );
  7. }
  8. my $min_tp = 1.22;
  9. eval "use Test::Pod $min_tp";
  10. plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
  11. all_pod_files_ok();