Skip Menu |

This queue is for tickets about the POD2-FR CPAN distribution.

Report information
The Basics
Id: 131898
Status: open
Priority: 0/
Queue: POD2-FR

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

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



Subject: t/t-ValidPod.t fails
The test suite fails: ... # Failed test 'POD test for blib/lib/POD2/FR.pm' # at /opt/perl-5.30.1/lib/site_perl/5.30.1/Test/Pod.pm line 184. # blib/lib/POD2/FR.pm (303): Non-ASCII character seen before =encoding in 'n�'. Assuming CP1252 # Failed test 'POD test for blib/lib/POD2/FR/perlop.pod' # at /opt/perl-5.30.1/lib/site_perl/5.30.1/Test/Pod.pm line 184. # blib/lib/POD2/FR/perlop.pod (857): Expected text after =item, not a bullet # Failed test 'POD test for blib/lib/POD2/FR/perlartistic.pod' # at /opt/perl-5.30.1/lib/site_perl/5.30.1/Test/Pod.pm line 184. # blib/lib/POD2/FR/perlartistic.pod (3): Non-ASCII character seen before =encoding in '�'. Assuming CP1252 # Looks like you failed 3 tests of 63. t/t-ValidPod.t .. Dubious, test returned 3 (wstat 768, 0x300) Failed 3/63 subtests ... It seems that =encoding directives are missing, but also there are other Pod problems.
While this test failure is indeed an issue that should be corrected, please don't allow pod, critic, coverage or kwalitee tests to run for normal user installs, as they make the installation fail unnecessarily when newer versions of the tester module introduces 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, neither of which can be predicted in advance. Either move these tests to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};