Skip Menu |

This queue is for tickets about the SilverGoldBull-API CPAN distribution.

Report information
The Basics
Id: 119003
Status: resolved
Priority: 0/
Queue: SilverGoldBull-API

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

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



Subject: pod coverage test fails (0.05_2, 0.05_3)
I see the following failure on my smokers: ... # Failed test 'Pod coverage on SilverGoldBull::API' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # Coverage for SilverGoldBull::API is 90.0%, with 1 naked subroutine: # BUILD # Failed test 'Pod coverage on SilverGoldBull::API::AddressRole' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::AddressRole: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::BillingAddress' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::BillingAddress: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::CommonMethodsRole' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::CommonMethodsRole: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::Item' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::Item: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::Order' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::Order: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::OrderRole' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::OrderRole: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::Quote' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::Quote: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::Response' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::Response: couldn't find pod # Failed test 'Pod coverage on SilverGoldBull::API::ShippingAddress' # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. # SilverGoldBull::API::ShippingAddress: couldn't find pod # Looks like you failed 10 tests of 10. t/pod-coverage.t ................. Dubious, test returned 10 (wstat 2560, 0xa00) Failed 10/10 subtests ...
On 2016-11-27 12:25:03, SREZIC wrote: Show quoted text
> I see the following failure on my smokers: > > ... > # Failed test 'Pod coverage on SilverGoldBull::API' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # Coverage for SilverGoldBull::API is 90.0%, with 1 naked subroutine: > # BUILD > > # Failed test 'Pod coverage on SilverGoldBull::API::AddressRole' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::AddressRole: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::BillingAddress' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::BillingAddress: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::CommonMethodsRole' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::CommonMethodsRole: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Item' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Item: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Order' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Order: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::OrderRole' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::OrderRole: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Quote' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Quote: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Response' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Response: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::ShippingAddress' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::ShippingAddress: couldn't find pod > # Looks like you failed 10 tests of 10. > t/pod-coverage.t ................. > Dubious, test returned 10 (wstat 2560, 0xa00) > Failed 10/10 subtests > ...
While this test failure is indeed an issue that should be corrected, please don't allow pod, critic, coverage or kwalitee tests to run for normal user installs, as they make the installation fail unnecessarily when newer versions of the tester module introduces errors that you cannot anticipate. Also spelling tests are dependent on what dictionaries are installed locally, and critic tests use all plugins that are installed, neither of which can be predicted in advance. Either move these tests to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
On Sun Nov 27 15:25:03 2016, SREZIC wrote: Show quoted text
> I see the following failure on my smokers: > > ... > # Failed test 'Pod coverage on SilverGoldBull::API' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # Coverage for SilverGoldBull::API is 90.0%, with 1 naked subroutine: > # BUILD > > # Failed test 'Pod coverage on SilverGoldBull::API::AddressRole' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::AddressRole: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::BillingAddress' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::BillingAddress: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::CommonMethodsRole' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::CommonMethodsRole: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Item' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Item: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Order' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Order: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::OrderRole' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::OrderRole: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Quote' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Quote: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::Response' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::Response: couldn't find pod > > # Failed test 'Pod coverage on SilverGoldBull::API::ShippingAddress' > # at /usr/perl5.22.2p/lib/site_perl/5.22.2/Test/Pod/Coverage.pm line 133. > # SilverGoldBull::API::ShippingAddress: couldn't find pod > # Looks like you failed 10 tests of 10. > t/pod-coverage.t ................. > Dubious, test returned 10 (wstat 2560, 0xa00) > Failed 10/10 subtests > ...
Thank you for your request. I fixed such issue in 0.07 release
Fixed in 0.07 release