]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blobdiff - t/92-pod-coverage.t
This is 1.00
[perl/modules/Test-Valgrind.git] / t / 92-pod-coverage.t
index 718c85859709bed3cb916c0ae8e1166d597199e8..3e6f0da9eebf180953d3396138e08ca11855b73b 100644 (file)
@@ -1,5 +1,8 @@
+#!perl -T
+
 use strict;
 use warnings;
+
 use Test::More;
 
 # Ensure a recent version of Test::Pod::Coverage
@@ -13,5 +16,26 @@ my $min_pc = 0.18;
 eval "use Pod::Coverage $min_pc";
 plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" if $@;
 
-plan tests => 1;
+my $trustparents = { coverage_class => 'Pod::Coverage::CountParents' };
+
+plan tests => 14;
+
 pod_coverage_ok('Test::Valgrind');
+
+pod_coverage_ok('Test::Valgrind::Action');
+pod_coverage_ok('Test::Valgrind::Action::Captor');
+pod_coverage_ok('Test::Valgrind::Action::Suppressions', $trustparents);
+pod_coverage_ok('Test::Valgrind::Action::Test', $trustparents);
+
+pod_coverage_ok('Test::Valgrind::Carp');
+
+pod_coverage_ok('Test::Valgrind::Command');
+pod_coverage_ok('Test::Valgrind::Command::Perl', $trustparents);
+
+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);