Subject: | t/pod.t is for authors |
Pod tests are really only for authors(you), something you should run
before releasing a module (make dist).
Getopt-Complete-v0.10/t/pod.t should look like
use strict;
use warnings;
use Test::More;
if( $ENV{TEST_POD} or $ENV{TEST_ALL} or $ENV{AUTHOR} ){
eval "use Test::Pod 1.18";
plan skip_all => 'Test::Pod 1.18 required' if $@;
all_pod_files_ok();
} else {
plan skip_all => 'set TEST_POD or TEST_ALL to enable this test';
}
Thank you