switch to Pod::Coverage::TrustMe
Graham Knop [Sun, 10 Mar 2024 14:00:48 +0000 (15:00 +0100)]
Makefile.PL
xt/pod.t

index ef8d851..ece4a4f 100644 (file)
@@ -34,8 +34,7 @@ my %META = (
     },
     develop => { requires => {
       'Test::Pod' => 0,
-      'Test::Pod::Coverage' => 0,
-      'Pod::Coverage::CountParents' => 0,
+      'Test::Pod::Coverage::TrustMe' => 0,
       %extra_prereqs,
     } },
   },
index 34d871b..fa62994 100644 (file)
--- a/xt/pod.t
+++ b/xt/pod.t
@@ -1,12 +1,12 @@
 use Test::More;
 use Test::Pod;
-use Test::Pod::Coverage;
+use Test::Pod::Coverage::TrustMe;
 use strict;
 use warnings FATAL => 'all';
 
 pod_file_ok($_)
   for all_pod_files;
-pod_coverage_ok($_, { coverage_class => 'Pod::Coverage::CountParents' })
+pod_coverage_ok($_)
   for all_modules;
 
 done_testing;