File: 92-pod-coverage.t

package info (click to toggle)
liblatex-driver-perl 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 512 kB
  • sloc: perl: 2,776; makefile: 4
file content (13 lines) | stat: -rwxr-xr-x 312 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use Test::More;

BEGIN {
    plan( skip_all => 'Author test.  Set $ENV{TEST_AUTHOR} to a true value to run.' )
        unless $ENV{TEST_AUTHOR};
}

eval "use Test::Pod::Coverage";
plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;
all_pod_coverage_ok();