Skip Menu |

This queue is for tickets about the Template-Timer CPAN distribution.

Report information
The Basics
Id: 26413
Status: resolved
Priority: 0/
Queue: Template-Timer

People
Owner: Nobody in particular
Requestors: mjd [...] plover.com
Cc:
AdminCc:

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



Subject: Test failures
Date: 16 Apr 2007 19:52:38 -0000
To: bug-template-timer [...] rt.cpan.org
From: mjd [...] plover.com
mjd@entropy:~/.cpan/build/Template-Timer-0.04-2l8QbA$ make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/00-load....# Testing Template::Timer 0.04 t/00-load....ok t/eval.......Can't locate object method "new" via package "Template" at t/eval.t line 12. # Looks like you planned 2 tests but only ran 1. # Looks like your test died just after 1. t/eval.......dubious Test returned status 255 (wstat 65280, 0xff00) DIED. FAILED test 2 Failed 1/2 tests, 50.00% okay t/pod........ok Failed Test Stat Wstat Total Fail List of Failed ------------------------------------------------------------------------------- t/eval.t 255 65280 2 2 2 Failed 1/3 test scripts. 1/4 subtests failed. Files=3, Tests=4, 1 wallclock secs ( 0.17 cusr + 0.03 csys = 0.20 CPU) Failed 1/3 test programs. 1/4 subtests failed. make: *** [test_dynamic] Error 255
Subject: Re: [rt.cpan.org #26413] AutoReply: Test failures
Date: Mon, 16 Apr 2007 15:54:46 -0400
To: bug-Template-Timer [...] rt.cpan.org
From: Mark Jason Dominus <mjd [...] plover.com>
Here's a fix: a patched version of t/eval.t: --- old 2007-04-16 15:55:53.000000000 -0400 +++ t/eval.t 2007-04-16 15:49:08.000000000 -0400 @@ -3,10 +3,11 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More tests => 3; BEGIN { use_ok( 'Template::Timer' ); + use_ok( 'Template' ); } my $tt =
Fixed in Subversion. thanks.