From: Graham Knop Date: Sun, 10 Mar 2024 14:00:48 +0000 (+0100) Subject: switch to Pod::Coverage::TrustMe X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Fstrictures.git;a=commitdiff_plain;h=1fa757b702ae2fcf34fda18f891714b6a29a04dd switch to Pod::Coverage::TrustMe --- diff --git a/Makefile.PL b/Makefile.PL index ef8d851..ece4a4f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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, } }, }, diff --git a/xt/pod.t b/xt/pod.t index 34d871b..fa62994 100644 --- 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;