Skip Menu |

This queue is for tickets about the Bb-Collaborate-V3 CPAN distribution.

Report information
The Basics
Id: 105567
Status: resolved
Priority: 0/
Queue: Bb-Collaborate-V3

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

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



Subject: pod test fails
# Failed test 'POD test for blib/lib/Bb/Collaborate/V3/Session.pm' # at /usr/perl5.10.1/lib/site_perl/5.10.1/Test/Pod.pm line 187. Wide character in print at /usr/perl5.10.1/lib/5.10.1/Test/Builder.pm line 1826. # blib/lib/Bb/Collaborate/V3/Session.pm (397): Non-ASCII character seen before =encoding in '<E2><80><9C>default<E2><80><9D>'. Assuming UTF-8 # Looks like you failed 1 test of 17. t/pod.t ..................... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/17 subtests Fails also with 0.02.
On 2015-06-29 21:54:19, SREZIC wrote: Show quoted text
> # Failed test 'POD test for blib/lib/Bb/Collaborate/V3/Session.pm' > # at /usr/perl5.10.1/lib/site_perl/5.10.1/Test/Pod.pm line 187. > Wide character in print at /usr/perl5.10.1/lib/5.10.1/Test/Builder.pm > line 1826. > # blib/lib/Bb/Collaborate/V3/Session.pm (397): Non-ASCII character > seen before =encoding in '<E2><80><9C>default<E2><80><9D>'. Assuming > UTF-8 > # Looks like you failed 1 test of 17. > t/pod.t ..................... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/17 subtests > > Fails also with 0.02.
Please don't allow pod tests to run for normal user installs -- they prevent installation unnecessarily. Either move them to xt/, or guard them with: use Test::More; plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
Fixing this in pending 0.4 release. Adding $ENV{AUTHOR_TESTING} guard to t/pod.t, as suggested. On Tue Jun 30 11:00:26 2015, ETHER wrote: Show quoted text
> On 2015-06-29 21:54:19, SREZIC wrote:
> > # Failed test 'POD test for blib/lib/Bb/Collaborate/V3/Session.pm' > > # at /usr/perl5.10.1/lib/site_perl/5.10.1/Test/Pod.pm line 187. > > Wide character in print at /usr/perl5.10.1/lib/5.10.1/Test/Builder.pm > > line 1826. > > # blib/lib/Bb/Collaborate/V3/Session.pm (397): Non-ASCII character > > seen before =encoding in '<E2><80><9C>default<E2><80><9D>'. Assuming > > UTF-8 > > # Looks like you failed 1 test of 17. > > t/pod.t ..................... > > Dubious, test returned 1 (wstat 256, 0x100) > > Failed 1/17 subtests > > > > Fails also with 0.02.
> > > Please don't allow pod tests to run for normal user installs -- they > prevent installation unnecessarily. > Either move them to xt/, or guard them with: > > use Test::More; > plan skip_all => "These tests are for authors only!" unless > $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
On Wed Jul 01 20:53:18 2015, WARRINGD wrote: Show quoted text
> Fixing this in pending 0.4 release. Adding $ENV{AUTHOR_TESTING} guard > to t/pod.t, as suggested. > > On Tue Jun 30 11:00:26 2015, ETHER wrote:
> > On 2015-06-29 21:54:19, SREZIC wrote:
> > > # Failed test 'POD test for > > > blib/lib/Bb/Collaborate/V3/Session.pm' > > > # at /usr/perl5.10.1/lib/site_perl/5.10.1/Test/Pod.pm line 187. > > > Wide character in print at > > > /usr/perl5.10.1/lib/5.10.1/Test/Builder.pm > > > line 1826. > > > # blib/lib/Bb/Collaborate/V3/Session.pm (397): Non-ASCII character > > > seen before =encoding in '<E2><80><9C>default<E2><80><9D>'. > > > Assuming > > > UTF-8 > > > # Looks like you failed 1 test of 17. > > > t/pod.t ..................... > > > Dubious, test returned 1 (wstat 256, 0x100) > > > Failed 1/17 subtests > > > > > > Fails also with 0.02.
> > > > > > Please don't allow pod tests to run for normal user installs -- they > > prevent installation unnecessarily. > > Either move them to xt/, or guard them with: > > > > use Test::More; > > plan skip_all => "These tests are for authors only!" unless > > $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};