File: pod-coverage.t

package info (click to toggle)
libmakefile-dom-perl 0.008-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 680 kB
  • sloc: perl: 7,616; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
use Test::More;

eval "use Test::Pod::Coverage";
plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;

my $trustme = {
               trustme => [qr/^(?:new)$/],
               coverage_class => 'Pod::Coverage::CountParents'
              };
all_pod_coverage_ok($trustme);

done_testing();