On Mon May 26 14:44:18 2014, ETHER wrote:
Show quoted text> On 2014-05-24 22:56:12, SREZIC wrote:
> > Test output is:
> >
> > # Failed test 'POD test for blib/lib/Imager/Graph/Horizontal.pm'
> > # at /opt/perl-5.20.0-RC1t/lib/site_perl/5.20.0/Test/Pod.pm line
> > 186.
> > # blib/lib/Imager/Graph/Horizontal.pm (18): =over without closing
> > =back
> > # blib/lib/Imager/Graph/Horizontal.pm (583): =over without closing
> > =back
> >
> > # Failed test 'POD test for blib/lib/Imager/Graph/Vertical.pm'
> > # at /opt/perl-5.20.0-RC1t/lib/site_perl/5.20.0/Test/Pod.pm line
> > 186.
> > # blib/lib/Imager/Graph/Vertical.pm (954): =over without closing
> > =back
> > # Looks like you failed 2 tests of 10.
> > t/t91pod.t .....................
>
>
> This test should not be running for normal user installs. Either move
> it to xt/, or guard it with:
>
> plan skip_all => 'this test is for authors only' unless
> $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
The pod tests are run only when either $ENV{AUTOMATED_TESTING} or $ENV{IMAGER_AUTHOR_TESTING}:
$ENV{AUTOMATED_TESTING} || $ENV{IMAGER_AUTHOR_TESTING}
or plan skip_all => "POD only tested under automated or author testing";
They shouldn't be run for normal user installs.
Tony