1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: add =encoding directive to POD
otherwise we geh a POD ERROR:
Around line 157:
Non-ASCII character seen before =encoding in 'GraliĆski'. Assuming
UTF-8
Origin: vendor
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-06-07
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=105057
Bug: https://rt.cpan.org/Ticket/Display.html?id=105057
--- a/lib/Test/Regression.pm
+++ b/lib/Test/Regression.pm
@@ -5,6 +5,8 @@
use FileHandle;
use utf8;
+=encoding UTF-8
+
=head1 NAME
Test::Regression - Test library that can be run in two modes; one to generate outputs and a second to compare against them
|