File: 99-pod-coverage.t

package info (click to toggle)
libnet-amazon-s3-perl 0.44-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 128 kB
  • ctags: 51
  • sloc: perl: 860; makefile: 42
file content (12 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
all_pod_coverage_ok( );

# Workaround for dumb bug (fixed in 5.8.7) where Test::Builder thinks that
# certain "die"s that happen inside evals are not actually inside evals,
# because caller() is broken if you turn on $^P like Module::Refresh does
#
# (I mean, if we've gotten to this line, then clearly the test didn't die, no?)
Test::Builder->new->{Test_Died} = 0;