1
2BEGIN {
3  unless ($ENV{RELEASE_TESTING}) {
4    require Test::More;
5    Test::More::plan(skip_all => 'these tests are for release candidate testing');
6  }
7}
8
9use strict;
10use warnings;
11
12use Test::More 0.88;
13
14eval "use Test::Pod 1.14";
15plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
16
17all_pod_files_ok();
18