File: 02-pod.t

package info (click to toggle)
qpsmtpd 0.94-8
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,340 kB
  • sloc: perl: 17,176; sh: 543; makefile: 186; sql: 100
file content (18 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!perl

use Test::More;

if (!$ENV{'QPSMTPD_DEVELOPER'}) {
    plan skip_all => "not a developer, skipping POD tests";
    exit;
}

eval "use Test::Pod 1.14";
if ($@) {
    plan skip_all => "Test::Pod 1.14 required for testing POD";
    exit;
}

my @poddirs = qw( lib plugins );
all_pod_files_ok(all_pod_files(@poddirs));
done_testing();