Skip Menu |

This queue is for tickets about the Locale-SubCountry CPAN distribution.

Report information
The Basics
Id: 78123
Status: resolved
Priority: 0/
Queue: Locale-SubCountry

People
Owner: kimryan [...] cpan.org
Requestors: mjgardner [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.50
Fixed in: (no value)



Subject: pod tests should be author-only
t/pod.t and t/pod-coverage.t are always run. They should only run as author tests, e.g., if $ENV{AUTHOR_TESTING} is true.
I tried adding the followng, but it was causing tests to fail at CPAN testers http://static.cpantesters.org/distro/L/Locale-SubCountry.html if ( $ENV{AUTHOR_TESTING} ) { eval "use Test::Pod 1.14"; plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; all_pod_files_ok(); } So I've reverted back to original code for version 1.56. I can't se any problem with having the testers always run the POD tests.