X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F91-pod.t;fp=t%2F91-pod.t;h=ee8b18ade667c3590c01bc64001d4f9cd19e6bf1;hb=04dc9ca1cac5cc5c30ad0f20013915d98352debc;hp=0000000000000000000000000000000000000000;hpb=2bb07e3d56530a3d96f3b1dcfa3ee52cec5c114c;p=perl%2Fmodules%2FLinux-SysInfo.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();