Blame t/release-pod-syntax.t

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