File: pod-coverage.t

package info (click to toggle)
libscalar-type-perl 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: perl: 210; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
use Test2::V0;

eval "use Test::Pod::Coverage 1.08";
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage" if $@;
foreach my $module (grep {
    $_ ne 'Test2::Compare::Type' &&
    $_ ne 'Test2::Tools::Type::Extras'
} all_modules()) {
    pod_coverage_ok($module);
}
done_testing();