pod.t 291 B

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