xref: /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
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