summaryrefslogtreecommitdiff
path: root/xt/author/pod-coverage.t
diff options
context:
space:
mode:
Diffstat (limited to 'xt/author/pod-coverage.t')
-rw-r--r--xt/author/pod-coverage.t17
1 files changed, 17 insertions, 0 deletions
diff --git a/xt/author/pod-coverage.t b/xt/author/pod-coverage.t
new file mode 100644
index 0000000..4875d12
--- /dev/null
+++ b/xt/author/pod-coverage.t
@@ -0,0 +1,17 @@
+#!perl
+use strict;
+use warnings;
+use Test::More;
+
+use Test::Pod::Coverage 1.08;
+use Pod::Coverage::TrustPod;
+
+# don't test files generated by Inline::Module
+my @modules = grep { not m{::Inline$} } all_modules();
+
+pod_coverage_ok(
+ $_,
+ { coverage_class => 'Pod::Coverage::TrustPod' },
+) for @modules;
+
+done_testing;