File: 99_pod-coverage.t

package info (click to toggle)
libtemplate-plugin-datetime-perl 0.06002-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: perl: 1,369; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use Test::More;

BEGIN
{
    if (! $ENV{TEST_POD}) {
        plan skip_all => "Enable TEST_POD environment variable to test POD";
    } else {
        eval "use Test::Pod::Coverage";
        plan skip_all => "Test::Pod::Coverage required for testing pod coverage" if $@;
        Test::Pod::Coverage::all_pod_coverage_ok();
    }
}