diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-07-11 00:08:15 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-11 00:08:15 -0700 |
commit | 3c5cccf1bf74f2e60482fe62cfbcbe06722da1f5 (patch) | |
tree | d0bfc425deb44dbaa0cad9f272cd2023407ebd05 /t/pod.t |
initial commit
Diffstat (limited to 't/pod.t')
-rw-r--r-- | t/pod.t | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#!perl -T + +use strict; +use warnings; +use Test::More; + +# 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(); |