]> git.donarmstrong.com Git - debhelper.git/commitdiff
Add a test for pod correctness.
authorFlorian Ragwitz <rafl@debian.org>
Fri, 25 Apr 2008 01:59:22 +0000 (03:59 +0200)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 25 Apr 2008 02:00:24 +0000 (22:00 -0400)
t/pod [new file with mode: 0755]

diff --git a/t/pod b/t/pod
new file mode 100755 (executable)
index 0000000..8a9c0bf
--- /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_*');