Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

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

Report information
The Basics
Id: 6918
Status: resolved
Priority: 0/
Queue: Email-Simple

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

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



Subject: t/3.t fails under perl 5.005_03
The Test::More included with perl 5.005_03 doesn't support 'no_plan', so this patch will fix the failing t/3.t under old-school perls. --cut-- --- t/3.t.orig Sat Jul 10 12:34:59 2004 +++ t/3.t Sat Jul 10 12:35:15 2004 @@ -1,4 +1,4 @@ -use Test::More no_plan; +use Test::More tests => 1; use Email::Simple; my $m = Email::Simple->new("Foo-Bar: Baz\n\ntest\n"); --cut-- /Lars
From: lars [...] thegler.dk
t/3.t still fails in version 1.91. /Lars
[LTHEGLER - Sat Nov 6 15:40:50 2004]: Show quoted text
> t/3.t still fails in version 1.91.
I'm afraid I'll need a little more information. Could I have the failure output or something? Try this, and mail me the results. perl Makefile.PL make perl -Mblib t/3.t -- Casey West
[CWEST - Mon Nov 8 07:09:27 2004]: Show quoted text
> [LTHEGLER - Sat Nov 6 15:40:50 2004]: >
> > t/3.t still fails in version 1.91.
> > I'm afraid I'll need a little more information. Could I have the > failure output or something?
My guess is because it's a noplan test plan, and the older test harnesses really don't like that. This should fix it: http://siesta.unixbeard.net/siesta/archive/siesta-commit/2004/11/09/83f8a46d.html -- Richard Clamp <richardc@unixbeard.net>