perldoc2tree.cgi: /usr/lib/perl5/site_perl/5.8.8/Test/Pod.pm: cannot resolve L in paragraph 41.
Checks all the files in @files for valid POD. It runs
all_pod_files() on each file/directory, and calls the plan() function for you
(one test for each function), so you can't have already called plan.
If @files is empty or not passed, the function finds all POD files in
the blib directory if it exists, or the lib directory if not.
A POD file is one that ends with .pod, .pl and .pm, or any file
where the first line looks like a shebang line.
If you're testing a module, just make a t/pod.t:
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();
Returns true if all pod files are ok, or false if any fail.
Returns a list of all the Perl files in $dir and in directories below.
If no directories are passed, it defaults to blibifblib exists,
or else libif not. Skips any files in CVS or .svn directories.