Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Email-Address CPAN distribution.

Report information
The Basics
Id: 8274
Status: resolved
Priority: 0/
Queue: Email-Address

People
Owner: Nobody in particular
Requestors: lars [...] thegler.dk
LTHEGLER [...] cpan.org
Cc:
AdminCc:

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



Subject: [PATCH] Fix tests under Perl 5.005_03
The version of Test::More included in Perl 5.005_03 does not yet recognize 'no_plan' (which IMHO is bad style to use in modules released to CPAN). This patch fixes the test failure. --cut-- --- t/tests.t.orig Sat Nov 6 20:22:53 2004 +++ t/tests.t Sat Nov 6 20:23:17 2004 @@ -1,4 +1,4 @@ -use Test::More qw[no_plan]; +use Test::More tests => 873; # $Id: tests.t,v 1.4 2004/10/12 12:04:52 cwest Exp $ use strict; $^W = 1; --cut-- /Lars