File: 99-pod-coverage.t

package info (click to toggle)
libdatetime-format-pg-perl 0.16010-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 260 kB
  • ctags: 224
  • sloc: makefile: 492; perl: 369
file content (12 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
#!perl
use Test::More;
BEGIN {
    eval "use Test::Pod";
    eval "use Test::Pod::Coverage";
    if ($@) {
        plan(skip_all => "Test::Pod::Coverage required for testing POD");
        eval "sub all_pod_coverage_ok {}";
    }
}

all_pod_coverage_ok();