Skip Menu |

This queue is for tickets about the Test-Harness CPAN distribution.

Report information
The Basics
Id: 87791
Status: resolved
Priority: 0/
Queue: Test-Harness

People
Owner: Nobody in particular
Requestors: shay [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 3.28
Fixed in: 3.29



Subject: [PATCH] Fix POD encoding
Perl's Porting/checkpodencoding.pl script has flagged up one file in the Test-Harness distribution having UTF-8 encoding in its POD without declaring the POD encoding as such. The attached patch against 3.28 fixes this.
Subject: utf8.patch
diff -ruN Test-Harness-3.28.orig/lib/TAP/Parser.pm Test-Harness-3.28/lib/TAP/Parser.pm --- Test-Harness-3.28.orig/lib/TAP/Parser.pm 2013-05-02 20:14:16.000000000 +0100 +++ Test-Harness-3.28/lib/TAP/Parser.pm 2013-08-12 13:08:35.154129700 +0100 @@ -18,6 +18,8 @@ use Carp qw( confess ); +=encoding utf8 + =head1 NAME TAP::Parser - Parse L<TAP|Test::Harness::TAP> output
On Mon Aug 12 08:18:07 2013, SHAY wrote: Show quoted text
> Perl's Porting/checkpodencoding.pl script has flagged up one file in > the Test-Harness distribution having UTF-8 encoding in its POD without > declaring the POD encoding as such. > > The attached patch against 3.28 fixes this.
I just pushed the patch, it will be part of the upcoming 3.29 release. Leon