File: pod-coverage.t

package info (click to toggle)
libfile-next-perl 1.18-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 260 kB
  • sloc: perl: 996; ansic: 21; makefile: 3; javascript: 2
file content (15 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T

use strict;
use warnings;

use Test::More;

my $module = 'Test::Pod::Coverage 1.04';

if ( eval "use $module; 1;" ) { ## no critic (ProhibitStringyEval)
    all_pod_coverage_ok();
}
else {
    plan skip_all => "$module required for testing POD";
}