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