summaryrefslogtreecommitdiff
path: root/t/98-pod-coverage.t
diff options
context:
space:
mode:
Diffstat (limited to 't/98-pod-coverage.t')
-rw-r--r--t/98-pod-coverage.t19
1 files changed, 19 insertions, 0 deletions
diff --git a/t/98-pod-coverage.t b/t/98-pod-coverage.t
new file mode 100644
index 00000000..f2b04717
--- /dev/null
+++ b/t/98-pod-coverage.t
@@ -0,0 +1,19 @@
+#!/usr/bin/perl
+#
+# t/98-pod-coverage.t
+#
+# Checks POD coverage.
+#
+
+use strict;
+use warnings;
+
+use Test::More tests => 4;
+use Test::More;
+eval "use Test::Pod::Coverage";
+plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;
+
+pod_coverage_ok("LedgerSMB");
+pod_coverage_ok("LedgerSMB::Locale");
+pod_coverage_ok("LedgerSMB::Log");
+pod_coverage_ok("LedgerSMB::Menufile");