File: pod.t

package info (click to toggle)
libmime-encwords-perl 1.014.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 252 kB
  • sloc: perl: 868; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;
use Test::More;
if ($] < 5.007003 ) {
    plan skip_all => "Perl 5.7.3 or later required for testing utf-8 POD";
} else {
    eval "use Test::Pod 1.00";
    if ($@) {
        plan skip_all => "Test::Pod 1.00 or later required for testing POD";
    }
}
all_pod_files_ok();