X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F91-pod.t;fp=t%2F91-pod.t;h=ee8b18ade667c3590c01bc64001d4f9cd19e6bf1;hb=982694f9f93cdad187a51077b5e6c48a17792870;hp=0000000000000000000000000000000000000000;hpb=e3217cb5d83d1ae15f1795bef7c885740607689b;p=perl%2Fmodules%2FTest-Leaner.git diff --git a/t/91-pod.t b/t/91-pod.t new file mode 100644 index 0000000..ee8b18a --- /dev/null +++ b/t/91-pod.t @@ -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();