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