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