Blame t/release-pod-syntax.t

Packit 9002b2
#!perl
Packit 9002b2
Packit 9002b2
BEGIN {
Packit 9002b2
  unless ($ENV{RELEASE_TESTING}) {
Packit 9002b2
    require Test::More;
Packit 9002b2
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
Packit 9002b2
  }
Packit 9002b2
}
Packit 9002b2
Packit 9002b2
use Test::More;
Packit 9002b2
Packit 9002b2
eval "use Test::Pod 1.41";
Packit 9002b2
plan skip_all => "Test::Pod 1.41 required for testing POD" if $@;
Packit 9002b2
Packit 9002b2
all_pod_files_ok();