Subject: | pod.t test are causing failures |
Hi,
Your pod tests are failing for me:
t/pod.t ........... 1/1
# Failed test 'blib/lib/String/CamelCase.pm'
# at /Users/mark/local/lib/perl5/site_perl/5.10.1/Test/Pod.pm line 219.
# blib/lib/String/CamelCase.pm (123): L<text|scheme:...> is invalid according to perlpod
# blib/lib/String/CamelCase.pm (125): L<text|scheme:...> is invalid according to perlpod
# Looks like you failed 1 test of 1.
perl -E 'use Test::Pod; say Test::Pod->VERSION'
1.40
Please consider only running pod tests if requested. My pod test looks like this:
use strict;
use Test::More;
unless ($ENV{POD_TESTS} || $ENV{PERL_AUTHOR} || $ENV{THIS_IS_MARKF_YOU_BETCHA})
{
Test::More::plan(
skip_all => "Test::Pod tests not enabled (set POD_TESTS or PERL_AUTHOR e
nv var)"
);
}
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();