X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Valgrind.git;a=blobdiff_plain;f=t%2F92-pod-coverage.t;h=a225486c8c3e61360feade855a5f6b23681d8311;hp=79ffd62f708a9c146f767ab95867ec4476e8f0df;hb=d44c95e8e9820ee69e76506bde7c2c5fbe37b568;hpb=5e79efb82cb666170d0433e927acb2048031ce34 diff --git a/t/92-pod-coverage.t b/t/92-pod-coverage.t index 79ffd62..a225486 100644 --- a/t/92-pod-coverage.t +++ b/t/92-pod-coverage.t @@ -18,7 +18,7 @@ plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" if $@ my $trustparents = { coverage_class => 'Pod::Coverage::CountParents' }; -plan tests => 16; +plan tests => 21; pod_coverage_ok('Test::Valgrind'); @@ -34,7 +34,16 @@ pod_coverage_ok('Test::Valgrind::Command::Aggregate', $trustparents); pod_coverage_ok('Test::Valgrind::Command::Perl', $trustparents); pod_coverage_ok('Test::Valgrind::Command::PerlScript', $trustparents); -pod_coverage_ok('Test::Valgrind::Parser::Suppressions::Text'); +pod_coverage_ok('Test::Valgrind::Component'); + +pod_coverage_ok('Test::Valgrind::Parser'); +pod_coverage_ok('Test::Valgrind::Parser::Suppressions::Text', $trustparents); +pod_coverage_ok('Test::Valgrind::Parser::Text', $trustparents); +pod_coverage_ok('Test::Valgrind::Parser::XML', $trustparents); +pod_coverage_ok('Test::Valgrind::Parser::XML::Twig', { + %$trustparents, + also_private => [ qr/^handle_/, qw/stash/ ], +}); pod_coverage_ok('Test::Valgrind::Report'); pod_coverage_ok('Test::Valgrind::Session');