File: 02_pod_coverage.t

package info (click to toggle)
libhtml-tableextract-perl 2.15-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 1,558; makefile: 2
file content (11 lines) | stat: -rwxr-xr-x 296 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
use Test::More;
my $msg;
if (! $ENV{HTE_DEV_TESTS}) {
  $msg = "(dev only)";
}
else {
  eval "use Test::Pod::Coverage 1.00";
  $msg = "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
}
plan skip_all => $msg if $msg;
all_pod_coverage_ok({also_private => [qw/TREE parse eof/]});