File: 902-pod.t

package info (click to toggle)
libparse-dia-sql-perl 0.31-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 924 kB
  • sloc: perl: 3,865; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id: 902-pod.t,v 1.1 2009/02/23 07:36:17 aff Exp $

use strict;
use warnings;
use Test::More;

BEGIN {
  plan( skip_all => 'AUTHOR_TEST must be set for pod test; skipping' )
    if ( !$ENV { 'AUTHOR_TEST' } );
}

# Ensure a recent version of Test::Pod
my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;

all_pod_files_ok();

__END__