diff options
Diffstat (limited to 'perl/t/docs/pod.t')
-rwxr-xr-x | perl/t/docs/pod.t | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/perl/t/docs/pod.t b/perl/t/docs/pod.t new file mode 100755 index 0000000..dfcf88e --- /dev/null +++ b/perl/t/docs/pod.t @@ -0,0 +1,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 (); |