File: pod-coverage.t

package info (click to toggle)
libcgi-compress-gzip-perl 1.03-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 132 kB
  • ctags: 14
  • sloc: perl: 692; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl
use warnings;
use strict;
use Test::More;

if ((!$ENV{AUTHOR_TEST} && !$ENV{AUTHOR_TEST_CDOLAN}) ||
    $ENV{AUTOMATED_TESTING})
{
   plan skip_all => 'Author test';
}
eval 'use Pod::Coverage 0.17 ()';
plan skip_all => 'Optional Pod::Coverage 0.17 not found' if $@;
eval 'use Test::Pod::Coverage 1.04';
plan skip_all => 'Optional Test::Pod::Coverage 1.04 not found' if $@;
all_pod_coverage_ok();