summaryrefslogtreecommitdiff
path: root/t/52podcover.t
diff options
context:
space:
mode:
Diffstat (limited to 't/52podcover.t')
-rw-r--r--t/52podcover.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/52podcover.t b/t/52podcover.t
new file mode 100644
index 0000000..48b82ff
--- /dev/null
+++ b/t/52podcover.t
@@ -0,0 +1,14 @@
+# -*- mode: cperl -*-
+use Test::More;
+eval "use 5.00504";
+plan skip_all => "perl 5.00504 required for this test" if $@;
+eval "use Test::Pod::Coverage 0.18"; # 0.15 was misbehaving according to David Cantrell
+plan skip_all => "Test::Pod::Coverage 0.18 required for testing pod coverage" if $@;
+plan tests => 1;
+my $trustme = { trustme => [ qw{
+ ckcmp
+ investigate
+ makehashref
+ }]
+ };
+pod_coverage_ok( "CPAN::Checksums", $trustme );