On 7/30/07, gray <[EMAIL PROTECTED]> wrote:
> I'm stumped. 5/6 testers have reported this error, but I can't
> reproduce this error. My other two modules have the same POD format
> without this error. Does the munging of the module name
> (Statistics::._Benford) indicate anything? Any help appreciated.
> Thanks.
Two points:
(1) Why do you feel that we all need to run your coverage tests? If
you can run them and you pass coverage, then we'll have coverage too.
I (and many others) only run these tests if an environment variable
like AUTHOR_TESTING is set. E.g., here is what I use, including a few
other helpful checks:
----
# pod_coverage.t
use Test::More;
plan skip_all => "Skipping author tests" if not $ENV{AUTHOR_TESTING};
my $min_tpc = 1.08;
eval "use Test::Pod::Coverage $min_tpc";
plan skip_all => "Test::Pod::Coverage $min_tpc required for testing
POD coverage"
if $@;
my $min_pc = 0.17;
eval "use Pod::Coverage $min_pc";
plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
if $@;
all_pod_coverage_ok();
----
(2) The tarball seems to have hidden files. Perhaps these were editor
swap/backup files? E.g. "ls -a lib/Statistics":
./ .// ._Bedford.pm Benford.pm
It looks like you might have done a tar/zip of your development
directory rather than used "make dist" to generate a tarball. "make
dist" only includes files listed in the MANIFEST.
Regards,
David