diff --git a/t/89-pod.t b/t/89-pod.t new file mode 100644 index 000000000..052390390 --- /dev/null +++ b/t/89-pod.t @@ -0,0 +1,7 @@ +#!perl +use strict; +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +my @poddirs = qw( lib addons plugins ); # plugins should be blank but... +all_pod_files_ok( all_pod_files( @poddirs ) );