From: Florian Ragwitz Date: Fri, 25 Apr 2008 01:59:22 +0000 (+0200) Subject: Add a test for pod correctness. X-Git-Tag: 7.0.2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7c5bc6e083749516d426d22d675ee0b93fd65e16;p=debhelper.git Add a test for pod correctness. --- diff --git a/t/pod b/t/pod new file mode 100755 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_*');