pod.t 232 B

123456789101112
  1. #!perl -T
  2. use strict;
  3. use warnings;
  4. use Test::More;
  5. # Ensure a recent version of Test::Pod
  6. my $min_tp = 1.22;
  7. eval "use Test::Pod $min_tp";
  8. plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
  9. all_pod_files_ok();