1BEGIN {
2 if( $ENV{PERL_CORE} ) {
3 chdir 't';
4 @INC = ('../lib', 'lib');
5 }
6 else {
7 unshift @INC, 't/lib';
8 }
9}
10
11use Test::More;
12eval "use Test::Pod 1.00";
13plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
14all_pod_files_ok();
15