Skip Menu |

This queue is for tickets about the Tk-Tree-JSON CPAN distribution.

Report information
The Basics
Id: 104846
Status: resolved
Priority: 0/
Queue: Tk-Tree-JSON

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

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



Subject: Pod test fails (encoding problem)
On 2015-06-01 12:34:13, SREZIC wrote: Show quoted text
> See http://www.cpantesters.org/cpan/report/50c91fda-0848-11e5-a2db- > 71c8f292232d for a sample fail report.
Probably you have to add a "=encoding iso-8859-1" directive or so to fix the problem. And make sure that you have Test::Pod installed on your own system.
On 2015-06-01 09:37:31, SREZIC wrote: Show quoted text
> On 2015-06-01 12:34:13, SREZIC wrote:
> > See http://www.cpantesters.org/cpan/report/50c91fda-0848-11e5-a2db- > > 71c8f292232d for a sample fail report.
> > Probably you have to add a "=encoding iso-8859-1" directive or so to > fix the problem. > And make sure that you have Test::Pod installed on your own system.
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};
Prevented pod tests from executing during user installs using the suggested guarding approach.