aboutsummaryrefslogtreecommitdiff
path: root/tests/server
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2010-02-09 23:57:10 -0800
committerRuss Allbery <rra@stanford.edu>2010-02-09 23:57:10 -0800
commit5d7f614e88bac459a693f1dcc91aad36ed3d00dd (patch)
tree0e7d6319bcfb4bc1c9d5c57dd513780521a65625 /tests/server
parentafcc4aba6708d37379ae70bab5ddc38592185e8b (diff)
Reorganize main POD tests and add a spelling check
Add a POD spelling test to the non-Perl-module part of the code and move the documentation tests into a separate directory. Merge the POD syntax tests between client and server into one test. Reformat all of the POD documentation to use 74 columns. Fix a few revealed spelling errors or weird wordings.
Diffstat (limited to 'tests/server')
-rwxr-xr-xtests/server/pod-t22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/server/pod-t b/tests/server/pod-t
deleted file mode 100755
index 52d81eb..0000000
--- a/tests/server/pod-t
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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");
- }
-}