]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - t/92-pod-coverage.t
718c85859709bed3cb916c0ae8e1166d597199e8
[perl/modules/Test-Valgrind.git] / t / 92-pod-coverage.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 # Ensure a recent version of Test::Pod::Coverage
6 my $min_tpc = 1.08;
7 eval "use Test::Pod::Coverage $min_tpc";
8 plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage" if $@;
9
10 # Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
11 # but older versions don't recognize some common documentation styles
12 my $min_pc = 0.18;
13 eval "use Pod::Coverage $min_pc";
14 plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" if $@;
15
16 plan tests => 1;
17 pod_coverage_ok('Test::Valgrind');