Way back when, I posted a same t/pod.t file that you can use to test all the POD in your distro.
Now, there's Test::Pod 1.00, which lets your t/pod.t look like this:
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();
Cool
grantm on 2003-11-10T09:19:12
Might I suggest putting that snippet into the Synopsis section of Test::Pod's POD?
Re:Cool
petdance on 2003-11-10T17:53:53
Done in 1.02, and I fixed the File::Spec problem.
Test::Pod enhancement is good
markjugg on 2003-11-12T17:50:50
I love it. I updated DBD::Pg to use it.