File: 99-pod-coverage.t

package info (click to toggle)
libclass-dbi-pg-perl 0.09-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 76 kB
  • ctags: 3
  • sloc: perl: 98; makefile: 2
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();