Skip Menu |

This queue is for tickets about the MooseX-App-Cmd-Command-BashComplete CPAN distribution.

Report information
The Basics
Id: 100353
Status: open
Priority: 0/
Queue: MooseX-App-Cmd-Command-BashComplete

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

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



Subject: Pod test fails
Running "make test": # Failed test 'POD test for blib/lib/MooseX/App/Cmd/Command/BashComplete.pm' # at /opt/perl-5.16.3/lib/site_perl/5.16.3/Test/Pod.pm line 186. # blib/lib/MooseX/App/Cmd/Command/BashComplete.pm (120): Non-ASCII character seen before =encoding in 'Øierud,'. Assuming UTF-8 # Looks like you failed 1 test of 1. t/pod.t ...... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests
On 2014-11-15 07:01:53, SREZIC wrote: Show quoted text
> Running "make test": > > # Failed test 'POD test for > blib/lib/MooseX/App/Cmd/Command/BashComplete.pm' > # at /opt/perl-5.16.3/lib/site_perl/5.16.3/Test/Pod.pm line 186. > # blib/lib/MooseX/App/Cmd/Command/BashComplete.pm (120): Non-ASCII > character seen before =encoding in 'Øierud,'. Assuming UTF-8 > # Looks like you failed 1 test of 1. > t/pod.t ...... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/1 subtests
This definitely an issue (using =encoding UTF-8 in pod, and possibly 'use utf8;' in code, will fix this), but it's also generally frowned upon to run pod tests for users -- the test should either be moved to xt/, or guarded with code like: use Test::More; plan skip_all => 'these tests are for authors only' unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};