Skip Menu |

This queue is for tickets about the Data-Template CPAN distribution.

Report information
The Basics
Id: 111011
Status: open
Priority: 0/
Queue: Data-Template

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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



Subject: pod test fails (0.01)
With Data-Template-0.01 I see: # Failed test 'POD test for ./blib/lib/Data/Template.pm' # at /usr/perl5.20.0/lib/site_perl/5.20.0/Test/Pod.pm line 187. # ./blib/lib/Data/Template.pm (191): Non-ASCII character seen before =encoding in 'naïve'. Assuming CP1252 # Failed test 'POD test for ./lib/Data/Template.pm' # at /usr/perl5.20.0/lib/site_perl/5.20.0/Test/Pod.pm line 187. # ./lib/Data/Template.pm (191): Non-ASCII character seen before =encoding in 'naïve'. Assuming CP1252 # Looks like you failed 2 tests of 8. t/99_pod.t ........... Dubious, test returned 2 (wstat 512, 0x200) Failed 2/8 subtests Probably you should add a line "=encoding iso-8859-1" or so to the top of the Pod.
Please don't allow pod, critic or kwalitee tests to run for normal user installs, as they make the installation fail unnecessarily when newer versions of the tester introduce errors that you cannot anticipate. Also spelling tests are dependent on what dictionaries are installed locally, and critic tests use all plugins that are installed, both of which cannot be predicted in advance. Either move them to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};