Skip Menu |

This queue is for tickets about the WebService-Recruit-Eyeco CPAN distribution.

Report information
The Basics
Id: 114459
Status: open
Priority: 0/
Queue: WebService-Recruit-Eyeco

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

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



Subject: Pod test fails (encoding problem)
Test output: # Failed test 'POD test for lib/WebService/Recruit/Eyeco.pm' # at /opt/perl-5.22.2t/lib/site_perl/5.22.2/Test/Pod.pm line 187. Wide character in print at /opt/perl-5.22.2t/lib/5.22.2/Test/Builder.pm line 1826. # lib/WebService/Recruit/Eyeco.pm (120): Non-ASCII character seen before =encoding in 'eyeco[アイコ]に掲載されている商品をさまざまな検索軸で探せる商品情報APIです。'. Assuming UTF-8 # Failed test 'POD test for lib/WebService/Recruit/Eyeco/Item.pm' # at /opt/perl-5.22.2t/lib/site_perl/5.22.2/Test/Pod.pm line 187. Wide character in print at /opt/perl-5.22.2t/lib/5.22.2/Test/Builder.pm line 1826. # lib/WebService/Recruit/Eyeco/Item.pm (92): Non-ASCII character seen before =encoding in ''トレー','. Assuming UTF-8 # Failed test 'POD test for lib/WebService/Recruit/Eyeco/SmallCategory.pm' # at /opt/perl-5.22.2t/lib/site_perl/5.22.2/Test/Pod.pm line 187. Wide character in print at /opt/perl-5.22.2t/lib/5.22.2/Test/Builder.pm line 1826. # lib/WebService/Recruit/Eyeco/SmallCategory.pm (87): Non-ASCII character seen before =encoding in ''ベビー','. Assuming UTF-8 # Looks like you failed 3 tests of 5. t/00_pod.t ................... Dubious, test returned 3 (wstat 768, 0x300) Failed 3/5 subtests Probably =encoding utf-8 should be added to the top of the pod.
On 2016-05-17 23:50:04, SREZIC wrote: Show quoted text
> Test output: > > # Failed test 'POD test for lib/WebService/Recruit/Eyeco.pm' > # at /opt/perl-5.22.2t/lib/site_perl/5.22.2/Test/Pod.pm line 187.
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 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, 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};