summaryrefslogtreecommitdiff
path: root/t/pod
diff options
context:
space:
mode:
Diffstat (limited to 't/pod')
-rwxr-xr-xt/pod10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/pod b/t/pod
new file mode 100755
index 00000000..8a9c0bf0
--- /dev/null
+++ b/t/pod
@@ -0,0 +1,10 @@
+#!/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_*');