X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F92-pod-coverage.t;h=a225486c8c3e61360feade855a5f6b23681d8311;hb=d44c95e8e9820ee69e76506bde7c2c5fbe37b568;hp=e78b413b29c2c1be90b974b2ac3bdcf013a3ce2d;hpb=0e79c45af8d5eabe900280cc0e5467936467dee9;p=perl%2Fmodules%2FTest-Valgrind.git diff --git a/t/92-pod-coverage.t b/t/92-pod-coverage.t index e78b413..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,10 +34,20 @@ 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::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'); pod_coverage_ok('Test::Valgrind::Suppressions'); pod_coverage_ok('Test::Valgrind::Tool'); -pod_coverage_ok('Test::Valgrind::Tool::SuppressionsParser'); pod_coverage_ok('Test::Valgrind::Tool::memcheck', $trustparents);