Skip Menu |

This queue is for tickets about the Pipeline CPAN distribution.

Report information
The Basics
Id: 77896
Status: new
Priority: 0/
Queue: Pipeline

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

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



Subject: Pod tests fail with Pod::Checker 1.51: MIssing blank line before =cut
Running tests with perl 5.16.0 that contains Pod::Checker 1.51, the t99/pod.t test fails: # Failed test 'Pod had errors in [blib/lib/Pipeline/Segment.pm]' # at t/99pod.t line 49. *** ERROR: Apparent command =cut not preceded by blank line at line 136 in file blib/lib/Pipeline/Segment.pm blib/lib/Pipeline/Segment.pm has 1 pod syntax error. # Failed test 'Pod had errors in [blib/lib/Pipeline/Dispatch.pm]' # at t/99pod.t line 49. *** ERROR: Spurious =cut command at line 223 in file blib/lib/Pipeline/Dispatch.pm blib/lib/Pipeline/Dispatch.pm has 1 pod syntax error. # Failed test 'Pod had errors in [blib/lib/Pipeline/Store/Simple.pm]' # at t/99pod.t line 49. *** ERROR: Apparent command =cut not preceded by blank line at line 101 in file blib/lib/Pipeline/Store/Simple.pm blib/lib/Pipeline/Store/Simple.pm has 1 pod syntax error. # Failed test 'Pod had errors in [lib/Pipeline/Segment.pm]' # at t/99pod.t line 49. *** ERROR: Apparent command =cut not preceded by blank line at line 136 in file lib/Pipeline/Segment.pm lib/Pipeline/Segment.pm has 1 pod syntax error. # Failed test 'Pod had errors in [lib/Pipeline/Dispatch.pm]' # at t/99pod.t line 49. *** ERROR: Spurious =cut command at line 223 in file lib/Pipeline/Dispatch.pm lib/Pipeline/Dispatch.pm has 1 pod syntax error. # Failed test 'Pod had errors in [lib/Pipeline/Store/Simple.pm]' # at t/99pod.t line 49. *** ERROR: Apparent command =cut not preceded by blank line at line 101 in file lib/Pipeline/Store/Simple.pm lib/Pipeline/Store/Simple.pm has 1 pod syntax error. # Looks like you failed 6 tests of 41. t/99pod.t ................ This is due to changes in Pod-Parser-1.50 (CPAN#61223).
From: ppisar [...] redhat.com
Dne Út 19.čen.2012 04:05:22, ppisar napsal(a): Show quoted text
> Running tests with perl 5.16.0 that contains Pod::Checker 1.51, the > t99/pod.t test fails: >
Attached patch fixes it.
Subject: Pipeline-3.12-Fix-POD-to-obey-stricter-Pod-Parser-1.51.patch
From 4e89afbc1237d10208f9c132ef29ea1ea96b8a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Tue, 19 Jun 2012 10:10:36 +0200 Subject: [PATCH] Fix POD to obey stricter Pod-Parser-1.51 https://rt.cpan.org/Public/Bug/Display.html?id=77896 --- lib/Pipeline/Dispatch.pm | 5 ----- lib/Pipeline/Segment.pm | 1 + lib/Pipeline/Store/Simple.pm | 1 + 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/Pipeline/Dispatch.pm b/lib/Pipeline/Dispatch.pm index e97af77..8f7f6ce 100644 --- a/lib/Pipeline/Dispatch.pm +++ b/lib/Pipeline/Dispatch.pm @@ -216,8 +216,3 @@ http://opensource.fotango.com =cut - - - - -=cut diff --git a/lib/Pipeline/Segment.pm b/lib/Pipeline/Segment.pm index 274db01..c3cd033 100644 --- a/lib/Pipeline/Segment.pm +++ b/lib/Pipeline/Segment.pm @@ -133,6 +133,7 @@ James A. Duncan <jduncan@fotango.com> Copyright 2003 Fotango Ltd. All Rights Reserved. This software is released under the same terms as Perl itself. + =cut diff --git a/lib/Pipeline/Store/Simple.pm b/lib/Pipeline/Store/Simple.pm index f63908c..b246dcd 100644 --- a/lib/Pipeline/Store/Simple.pm +++ b/lib/Pipeline/Store/Simple.pm @@ -98,6 +98,7 @@ James A. Duncan <jduncan@fotango.com> Copyright 2003 Fotango Ltd. All Rights Reserved. This software is released under the same terms as Perl itself. + =cut -- 1.7.7.6