File: pod.t

package info (click to toggle)
libpdf-table-perl 1%3A1.006-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 532 kB
  • sloc: perl: 3,841; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 409 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;

my $min_ver = 1.52; # was 1.00, for Test::Pod
# Windows: SET AUTHOR_TESTING=1

BEGIN {
  unless ($ENV{'AUTHOR_TESTING'}) {
    print qq{1..0 # SKIP Test::Pod, for testing by the author\n};
    exit
  }
}

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

1;