CC: | ether [...] cpan.org |
Subject: | Failed test 'has_test_pod' dose not see use Test::Requires { 'Test::Pod' => 1.46 }; |
t/kwalitee.t ........ 10/13
# Failed test 'has_test_pod'
# at /home/kevin/perl5/perlbrew/perls/perl-5.16.3/lib/site_perl/5.16.3/Test/Kwalitee.pm line 104.
# Add a test using Test::Pod to check for pod correctness.Doesn't include a test for pod correctness (Test::Pod)
I asume that this is due to Kwalitee being confused by
use Test::Requires { 'Test::Pod' => 1.46 };
Subject: | 02-pod.t |
use strict;
use warnings FATAL => 'all';
use English qw( -no_match_vars );
local $OUTPUT_AUTOFLUSH = 1;
use Test::More;
use Test::Requires { 'Test::Pod' => 1.46 };
all_pod_files_ok();
done_testing();
__END__