Subject: | Pod::Simple 3.19 requires Test::More 0.88 |
The use of "done_testing" in t/xhtml15.t means that Test::More 0.88 or
later is needed to run the test suite, so either:
1. the version requirement should be specified in META.*/Makefile.PL, or
2. the attached patch could be applied to restore compatibility with
ancient Test::More versions
Subject: | Pod-Simple-3.19-old-Test::More.patch |
--- Pod-Simple-3.19/t/xhtml15.t.orig 2011-08-23 17:18:55.000000000 +0100
+++ Pod-Simple-3.19/t/xhtml15.t 2011-08-24 09:08:32.659887593 +0100
@@ -6,7 +6,7 @@
use strict;
use warnings;
use lib 'lib';
-use Test::More;
+use Test::More tests => 4;
use_ok('Pod::Simple::XHTML') or exit;
@@ -27,8 +27,6 @@
#note('These methods are called when XHTML is used by HtmlBatch');
can_ok $parser, qw/batch_mode_page_object_init html_header_after_title/;
-done_testing;
-
sub initialize {
$parser = Pod::Simple::XHTML->new;
$parser->index(1);