aboutsummaryrefslogtreecommitdiffstats
path: root/t/pod-coverage.t
blob: f135c3e07d70284fae36ce2ff68acbc3709c4c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;
use English qw(-no_match_vars);

eval { require Test::Pod::Coverage; };
plan(skip_all => 'Test::Pod::Coverage required') if $EVAL_ERROR;


Test::Pod::Coverage->import();
all_pod_coverage_ok();