Skip Menu |

This queue is for tickets about the Pod-AsciiDoctor CPAN distribution.

Report information
The Basics
Id: 106282
Status: resolved
Worked: 5 min
Priority: 0/
Queue: Pod-AsciiDoctor

People
Owner: BALA [...] cpan.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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



Subject: pod coverage test fails (typo in function name?)
If Test::Pod::Coverage is installed: # Failed test 'Pod coverage on Pod::AsciiDoctor' # at /opt/perl-5.18.4t/lib/site_perl/5.18.4/Test/Pod/Coverage.pm line 133. # Coverage for Pod::AsciiDoctor is 88.9%, with 1 naked subroutine: # initalize # Looks like you failed 1 test of 1. t/pod-coverage.t .. Looks like there's a typo in a function name ("initalize" instead of "initialize").
On 2015-08-06 23:13:39, SREZIC wrote: Show quoted text
> If Test::Pod::Coverage is installed: > > # Failed test 'Pod coverage on Pod::AsciiDoctor' > # at /opt/perl-5.18.4t/lib/site_perl/5.18.4/Test/Pod/Coverage.pm > line 133. > # Coverage for Pod::AsciiDoctor is 88.9%, with 1 naked subroutine: > # initalize > # Looks like you failed 1 test of 1. > t/pod-coverage.t .. > > Looks like there's a typo in a function name ("initalize" instead of > "initialize").
Please don't allow pod tests to run for normal user installs. Either move them to xt/, or guard them with code like: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
On Fri Aug 07 02:13:39 2015, SREZIC wrote: Show quoted text
> If Test::Pod::Coverage is installed: > > # Failed test 'Pod coverage on Pod::AsciiDoctor' > # at /opt/perl-5.18.4t/lib/site_perl/5.18.4/Test/Pod/Coverage.pm > line 133. > # Coverage for Pod::AsciiDoctor is 88.9%, with 1 naked subroutine: > # initalize > # Looks like you failed 1 test of 1. > t/pod-coverage.t .. > > Looks like there's a typo in a function name ("initalize" instead of > "initialize").
Thanks, It has been fixed now.