File: pod.t

package info (click to toggle)
libmodule-metadata-perl 1.000009-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 212 kB
  • sloc: perl: 1,644; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use Test::More;
use Test::Pod;
use Test::Pod::Coverage;
use strict;
use warnings FATAL => 'all';

# the all_ things attempt to plan, which we didn't want, so stop them
# from doing that
no warnings 'redefine';
local *Test::Builder::plan = sub { };

all_pod_files_ok;
all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::CountParents' });

done_testing;