Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Siebel-SOAP-Auth CPAN distribution.

Report information
The Basics
Id: 108414
Status: resolved
Priority: 0/
Queue: Siebel-SOAP-Auth

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

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



Subject: pod coverage test fails
Output from failing test: # Failed test 'Pod coverage is ok' # at t/pod-coverage.t line 31. # Coverage for Siebel::SOAP::Auth is 20.0%, with 12 naked subroutines: # get_auth_fault # get_header_ns # get_last_fault # get_lookup_ns # get_pass # get_remain_ttl # get_session_timeout # get_session_type # get_token # get_token_max_age # get_token_timeout # get_user # Looks like you failed 1 test of 1. t/pod-coverage.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests
On 2015-11-03 11:02:50, SREZIC wrote: Show quoted text
> Output from failing test: > > # Failed test 'Pod coverage is ok' > # at t/pod-coverage.t line 31. > # Coverage for Siebel::SOAP::Auth is 20.0%, with 12 naked subroutines: > # get_auth_fault > # get_header_ns > # get_last_fault > # get_lookup_ns > # get_pass > # get_remain_ttl > # get_session_timeout > # get_session_type > # get_token > # get_token_max_age > # get_token_timeout > # get_user > # Looks like you failed 1 test of 1. > t/pod-coverage.t .. > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/1 subtests
Please don't allow pod tests to run for normal user installs. Either move them to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
Fixed both mistakes: 1 - Pod syntax that is acceptable by Test::Pod::Coverage 2 - Moved those tests to xt directory On Tue Nov 03 17:05:01 2015, ETHER wrote: Show quoted text
> On 2015-11-03 11:02:50, SREZIC wrote:
> > Output from failing test: > > > > # Failed test 'Pod coverage is ok' > > # at t/pod-coverage.t line 31. > > # Coverage for Siebel::SOAP::Auth is 20.0%, with 12 naked > > subroutines: > > # get_auth_fault > > # get_header_ns > > # get_last_fault > > # get_lookup_ns > > # get_pass > > # get_remain_ttl > > # get_session_timeout > > # get_session_type > > # get_token > > # get_token_max_age > > # get_token_timeout > > # get_user > > # Looks like you failed 1 test of 1. > > t/pod-coverage.t .. > > Dubious, test returned 1 (wstat 256, 0x100) > > Failed 1/1 subtests
> > Please don't allow pod tests to run for normal user installs. Either > move them to xt/, or guard them with: > > plan skip_all => "These tests are for authors only!" unless > $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};