summaryrefslogtreecommitdiff
path: root/t/pod.t
blob: b5b5694ed580823b526187ea73c383c9acbf6b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;
use warnings;
use Test::More;

eval 'use Test::Pod';
plan skip_all => 'Test::Pod required' if $@;

all_pod_files_ok(grep { -x $_ } glob 'dh_*');

# Local Variables:
# indent-tabs-mode: t
# tab-width: 4
# cperl-indent-level: 4
# End: