blob: da4d0d3f5c58049cafee2d0fd3fdd0d263aae9d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/perl
# $Id$
#
# 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 ();
|