From: Don Armstrong Date: Thu, 19 Feb 2009 04:39:16 +0000 (-0800) Subject: add Test::POD test X-Git-Tag: release/2.6.0~461^2~64 X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=cb64e9c6644c0bd55ec543d600ea8db1add4450b add Test::POD test --- diff --git a/debian/control b/debian/control index 075eee7..a55506b 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Build-Depends-Indep: debhelper, libparams-validate-perl, liburi-perl, libsoap-lite-perl, libcgi-simple-perl, libhttp-server-simple-perl, libtest-www-mechanize-perl, libmail-rfc822-address-perl, libsafe-hole-perl, libuser-perl, - libconfig-simple-perl + libconfig-simple-perl, libtest-pod-perl Package: debbugs Architecture: all diff --git a/t/01_pod.t b/t/01_pod.t new file mode 100644 index 0000000..1d7c422 --- /dev/null +++ b/t/01_pod.t @@ -0,0 +1,5 @@ +# -*- mode: cperl; -*- +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +all_pod_files_ok();