File: 02-pod.t

package info (click to toggle)
libnet-route-perl 0.02-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 335; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl -T

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

if ( !$ENV{'AUTHOR_TEST'} && !$ENV{'AUTHOR_TEST_NET_ROUTE'} )
{
    plan( skip_all => 'This test is only run when AUTHOR_TEST is set' );
}

# 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();