File: pod-coverage.t

package info (click to toggle)
libcarp-assert-more-perl 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: perl: 2,482; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl

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";
}