blob: dfcf88ef8c3f47437a49be93c08308ab672f0b1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/perl -w
#
# Test POD formatting for the wallet Perl modules.
#
# Written by Russ Allbery <eagle@eyrie.org>
# Copyright 2007, 2010
# The Board of Trustees of the Leland Stanford Junior University
#
# See LICENSE for licensing terms.
use strict;
use Test::More;
eval 'use Test::Pod 1.00';
plan skip_all => 'Test::Pod 1.00 required for testing POD' if $@;
all_pod_files_ok ();
|