don't test POD for end users
[p5sagit/Function-Parameters.git] / t / pod.t
CommitLineData
18da5c15 1#!perl
7a63380c 2
3use strict;
4use warnings;
5use Test::More;
6
18da5c15 7plan skip_all => "set RELEASE_TESTING=1 to run this test" unless $ENV{RELEASE_TESTING};
8
7a63380c 9# Ensure a recent version of Test::Pod
10my $min_tp = 1.22;
11eval "use Test::Pod $min_tp";
12plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
13
14all_pod_files_ok();