This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate:
[perl5.git] / lib / Test / Harness / t / pod.t
1 BEGIN {
2     if( $ENV{PERL_CORE} ) {
3         chdir 't';
4         @INC = ('../lib', 'lib');
5     }
6     else {
7         unshift @INC, 't/lib';
8     }
9 }
10
11 use Test::More;
12 eval "use Test::Pod 1.00";
13 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
14 all_pod_files_ok();