blob: 52d81eb1ac49e15d52c7edeb05147262f6ca73a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/perl
#
# Test POD formatting for client documentation.
#
# Written by Russ Allbery <rra@stanford.edu>
# Copyright 2008, 2010 Board of Trustees, Leland Stanford Jr. University
#
# See LICENSE for licensing terms.
use Test::More;
my @files = qw(keytab-backend wallet-admin wallet-backend);
my $total = scalar (@files);
plan tests => $total;
eval 'use Test::Pod 1.00';
SKIP: {
skip 'Test::Pod 1.00 required for testing POD', $total if $@;
for my $file (@files) {
pod_file_ok ("$ENV{SOURCE}/../server/$file", "server/$file");
}
}
|