blob: e9aa0a8909cc6a1fe0f761943507c01146fe7506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/perl
#
# t/pod.t -- Test POD formatting for the wallet Perl modules.
#
# Written by Russ Allbery <rra@stanford.edu>
# Copyright 2007 Board of Trustees, Leland Stanford Jr. University
#
# See LICENSE for licensing terms.
eval 'use Test::Pod 1.00';
if ($@) {
print "1..1\n";
print "ok 1 # skip - Test::Pod 1.00 required for testing POD\n";
exit;
}
all_pod_files_ok ();
|