6a61ac4217b4b71dbf4e2512c1b222404c83a208
[perl/plp/.git] / t / 93-podcover.t
1 use strict;
2 use warnings;
3 use lib 'lib';
4
5 use Test::More;
6 eval 'use Test::Pod::Coverage';
7 plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;
8
9 plan tests => 1;
10 pod_coverage_ok($_, {nonwhitespace => 1}, $_) for 'PLP::Functions';
11
12 # Other modules can be assumed either private (Tie::*),
13 # simple includes (Backend::* - generally only accessed by constructor),
14 # or both (Fields - defying Coverage because it just exports variables).
15