Rafael Garcia-Suarez wrote:
Unfortunately :
lib/version...............................Undefined subroutine &main::qv called
at ../lib/version.t line 234.
# Looks like you planned 200 tests but only ran 70.
# Looks like your test died just after 70.
FAILED--expected 200 tests, saw 70
I swear I ran the tests (with a threaded Perl) before I sent this...
Probably a missing SKIP.
No, it was a missing export. Apply this on top of the previous patch:
--- lib/version.pm.old 2005-09-15 09:10:47.713873256 -0400
+++ lib/version.pm 2005-09-15 09:11:21.639684592 -0400
@@ -4,9 +4,16 @@ package version;
use 5.005_03;
use strict;
-use vars qw( $VERSION );
+require Exporter;
+use vars qw(@ISA $VERSION $CLASS @EXPORT);
-$VERSION = "0.48";
[EMAIL PROTECTED] = qw(Exporter);
+
[EMAIL PROTECTED] = qw(qv);
+
+$VERSION = "0.48";
+
+$CLASS = 'version';
# Preloaded methods go here.
Sorry...
John
--
John Peacock
Director of Information Research and Technology
Rowman & Littlefield Publishing Group
4501 Forbes Boulevard
Suite H
Lanham, MD 20706
301-459-3366 x.5010
fax 301-429-5748