summaryrefslogtreecommitdiff
path: root/t/06-pod-coverage.t
blob: a3e35ebaefb70b2cc982958bea9dca6e88cfd7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;

eval "use Test::Pod::Coverage 1.00";

plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;

all_pod_coverage_ok();