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