File: 99_pod.t

package info (click to toggle)
libunicode-maputf8-perl 1.11-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 156 kB
  • ctags: 19
  • sloc: perl: 603; makefile: 38
file content (19 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
eval {
    require Test::More;
};
if ($@) {
    $|++;
    print "1..0 # Skipped: Test::More required for testing POD. Skipping.\n";
    exit;
}

eval {
    require Test::Pod;
};
if ($@ or (not defined $Test::Pod::VERSION) or ($Test::Pod::VERSION < 1.00)) {
    Test::More::plan (skip_all => "Test::Pod 1.00 required for testing POD");
    exit;
}

Test::Pod::all_pod_files_ok();