summaryrefslogtreecommitdiff
path: root/t/pod.t
blob: 23acc7d93125959f05810b2a04a9fe2ff9dfdb0c (plain)
1
2
3
4
5
6
7
8
#!perl -w

use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();

1;