1use strict;
2use warnings;
3use Test::More;
4
5unless ( $ENV{RELEASE_TESTING} ) {
6    plan skip_all => 'Pod tests not required for installation.';
7}
8
9eval "use Test::Pod 1.22";
10plan skip_all => 'Test::Pod 1.22 or higher not installed.' if $@;
11all_pod_files_ok();
12