summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2008-04-25 03:59:22 +0200
committerJoey Hess <joey@kodama.kitenet.net>2008-04-24 22:00:24 -0400
commit7c5bc6e083749516d426d22d675ee0b93fd65e16 (patch)
tree77187ed0d9187a769718820cd71a8a2ce0f2f14b /t
parentc99c3d2116df31ac8b6aa9d4b81107a80bbca8a8 (diff)
Add a test for pod correctness.
Diffstat (limited to 't')
-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_*');