]> git.donarmstrong.com Git - debbugs.git/commitdiff
add Test::POD test
authorDon Armstrong <don@donarmstrong.com>
Thu, 19 Feb 2009 04:39:16 +0000 (20:39 -0800)
committerDon Armstrong <don@donarmstrong.com>
Thu, 19 Feb 2009 04:39:16 +0000 (20:39 -0800)
debian/control
t/01_pod.t [new file with mode: 0644]

index 075eee73f9792d231914d46f05f240d9ecd25068..a55506ba2660a765e187c8a239a9ee114c8a5420 100644 (file)
@@ -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 (file)
index 0000000..1d7c422
--- /dev/null
@@ -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();