1BEGIN {
2	if ($ENV{PERL_CORE}) {
3		chdir 't' if -d 't';
4		@INC = '../lib';
5	}
6}
7
8BEGIN {
9	eval "use Test::More";
10	if ($@) {
11		print "1..0 # Skipped: Test::More not installed\n";
12		exit;
13	}
14}
15
16eval "use Test::Pod 1.00";
17plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
18all_pod_files_ok();
19