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