Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Chart-Clicker CPAN distribution.

Report information
The Basics
Id: 56398
Status: resolved
Priority: 0/
Queue: Chart-Clicker

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

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



Subject: Missing Test Dependency on Test::Exception
Hi: There is currently a failure because Test::Exception is use'd without being requested in build_requires and without being eval'd -- it should be used like so: eval "use Test::Exception"; plan skip_all => 'Test::Exception is needed for this test' if $@; So that it doesn't cause failures when it's not installed. I'm not sure if this is visible on CPAN Testers, but I assume it would be if the machines don't happen to have Test::Exception installed. This prevents your package from being buildable. t/04-renderer-point.t .............. ok Can't locate Test/Exception.pm in @INC (@INC contains: /build/jon-libchart-clicker-perl_2.60-1-i386-qON6a1/libchart-clicker-perl-2.60/inc /build/jon-libchart-clicker-perl_2.60-1-i386-qON6a1/libchart-clicker-perl-2.60/blib/lib /build/jon-libchart-clicker-perl_2.60-1-i386-qON6a1/libchart-clicker-perl-2.60/blib/arch /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .) at t/05-decoration-color_allocator.t line 4. BEGIN failed--compilation aborted at t/05-decoration-color_allocator.t line 4. # Looks like your test exited with 2 before it could output anything. t/05-decoration-color_allocator.t .. Dubious, test returned 2 (wstat 512, 0x200) Failed 101/101 subtests t/05-decoration-glass.t ............ ok
Fixed in 2.61. Thanks!