Skip Menu |

This queue is for tickets about the AuthCAS CPAN distribution.

Report information
The Basics
Id: 87241
Status: resolved
Priority: 0/
Queue: AuthCAS

People
Owner: Nobody in particular
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.6
Fixed in: (no value)



Subject: t/pod.t test fails due to missing POD encoding declaration
Stricter POD parser in Perl 5.18 causes this failure: t/pod.t ........... 1/1 # Failed test 'POD test for blib/lib/AuthCAS.pm' # at /usr/share/perl5/vendor_perl/Test/Pod.pm line 186. # blib/lib/AuthCAS.pm (759): Non-ASCII character seen before =encoding in 'Comit�'. Assuming UTF-8 # Looks like you failed 1 test of 1. t/pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests
From: ppisar [...] redhat.com
Dne St 24.čec.2013 03:47:16, ppisar napsal(a): Show quoted text
> Stricter POD parser in Perl 5.18 causes this failure: > > t/pod.t ........... 1/1 > # Failed test 'POD test for blib/lib/AuthCAS.pm' > # at /usr/share/perl5/vendor_perl/Test/Pod.pm line 186. > # blib/lib/AuthCAS.pm (759): Non-ASCII character seen before =encoding > in 'Comit�'. Assuming UTF-8 > # Looks like you failed 1 test of 1. > t/pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/1 subtests
Attached patch fixes it. -- Petr
Subject: AuthCAS-1.6-Define-POD-encoding.patch
From b866867c72d3e02e1850fec87f109963877121bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Wed, 24 Jul 2013 09:43:57 +0200 Subject: [PATCH] Define POD encoding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Písař <ppisar@redhat.com> --- lib/AuthCAS.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/AuthCAS.pm b/lib/AuthCAS.pm index 234fd6d..135d73f 100644 --- a/lib/AuthCAS.pm +++ b/lib/AuthCAS.pm @@ -6,6 +6,8 @@ use vars qw( $VERSION); $VERSION = '1.6'; +=encoding utf8 + =head1 NAME AuthCAS - Client library for JA-SIG CAS 2.0 authentication server -- 1.8.1.4
Fixed in version 1.7 to come Thank you for submiting a patch Le Mer 24 Jui 2013 03:49:16, ppisar a écrit : Show quoted text
> Dne St 24.čec.2013 03:47:16, ppisar napsal(a):
> > Stricter POD parser in Perl 5.18 causes this failure: > > > > t/pod.t ........... 1/1 > > # Failed test 'POD test for blib/lib/AuthCAS.pm' > > # at /usr/share/perl5/vendor_perl/Test/Pod.pm line 186. > > # blib/lib/AuthCAS.pm (759): Non-ASCII character seen before =encoding > > in 'Comit�'. Assuming UTF-8 > > # Looks like you failed 1 test of 1. > > t/pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) > > Failed 1/1 subtests
> > Attached patch fixes it. > > -- Petr