1eval " use Test::More " ;
2
3if ($@)
4{
5    print "1..0 # Skip: Test::More required for testing POD\n" ;
6    exit 0;
7}
8
9eval "use Test::Pod 1.00";
10
11if ($@)
12{
13    print "1..0 # Skip: Test::Pod 1.00 required for testing POD\n" ;
14    exit 0;
15}
16
17all_pod_files_ok();
18
19