Skip Menu |

This queue is for tickets about the String-CamelCase CPAN distribution.

Report information
The Basics
Id: 48866
Status: resolved
Priority: 0/
Queue: String-CamelCase

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

Bug Information
Severity: Critical
Broken in: 0.01
Fixed in: (no value)



Subject: pod.t test are causing failures
Hi, Your pod tests are failing for me: t/pod.t ........... 1/1 # Failed test 'blib/lib/String/CamelCase.pm' # at /Users/mark/local/lib/perl5/site_perl/5.10.1/Test/Pod.pm line 219. # blib/lib/String/CamelCase.pm (123): L<text|scheme:...> is invalid according to perlpod # blib/lib/String/CamelCase.pm (125): L<text|scheme:...> is invalid according to perlpod # Looks like you failed 1 test of 1. perl -E 'use Test::Pod; say Test::Pod->VERSION' 1.40 Please consider only running pod tests if requested. My pod test looks like this: use strict; use Test::More; unless ($ENV{POD_TESTS} || $ENV{PERL_AUTHOR} || $ENV{THIS_IS_MARKF_YOU_BETCHA}) { Test::More::plan( skip_all => "Test::Pod tests not enabled (set POD_TESTS or PERL_AUTHOR e nv var)" ); } eval "use Test::Pod 1.14"; plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; all_pod_files_ok();
On Thu Aug 20 05:09:18 2009, MARKF wrote: Show quoted text
> Hi, > > Your pod tests are failing for me:
Here too. Patch attached. (or you can fetch it from http://github.com/melo/perl-string-camelcase) Best regards,
From 4379eb565311df055777eacbdca58225dd1d811a Mon Sep 17 00:00:00 2001 From: Pedro Melo <melo@simplicidade.org> Date: Wed, 9 Sep 2009 12:56:04 +0100 Subject: [PATCH] Fix pod errors in String::CamelCase Signed-off-by: Pedro Melo <melo@simplicidade.org> --- lib/String/CamelCase.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/String/CamelCase.pm b/lib/String/CamelCase.pm index ebf1360..2b26b4f 100644 --- a/lib/String/CamelCase.pm +++ b/lib/String/CamelCase.pm @@ -120,9 +120,9 @@ L<http://search.cpan.org/dist/String-CamelCase> =head1 SEE ALSO -L<CamelCase(en.wikipedia.org)|http://en.wikipedia.org/wiki/CamelCase> +CamelCase(en.wikipedia.org) L<http://en.wikipedia.org/wiki/CamelCase> -L<CamelCase(ja.wikipedia.org)|http://ja.wikipedia.org/wiki/%E3%82%AD%E3%83%A3%E3%83%A1%E3%83%AB%E3%82%B1%E3%83%BC%E3%82%B9> +CamelCase(ja.wikipedia.org) L<http://ja.wikipedia.org/wiki/%E3%82%AD%E3%83%A3%E3%83%A1%E3%83%AB%E3%82%B1%E3%83%BC%E3%82%B9> =head1 COPYRIGHT & LICENSE -- 1.6.5.rc0
On Wed Sep 09 07:58:16 2009, http://www.simplicidade.org/ wrote: Show quoted text
> On Thu Aug 20 05:09:18 2009, MARKF wrote:
> > Hi, > > > > Your pod tests are failing for me:
> > Here too. Patch attached. > > (or you can fetch it from http://github.com/melo/perl-string-camelcase) > > Best regards,
Also having the issue here. Thanks!