3 =head2 podcorrectness.t
5 This test file checks all perl modules in the C4 directory for POD
6 correctness. It typically finds things like pod tags withouth blank
7 lines immediately before or after them, unknown directives, or =over,
8 =item, and =back in the wrong order.
10 You must have Test::Pod installed.
12 One good way to run this is with C<prove -v
13 xt/author/podcorrectness.t>
18 eval "use Test::Pod 1.00";
19 plan skip_all
=> "Test::Pod 1.00 required for testing POD" if $@
;
20 my @poddirs = qw( C4 Koha );
21 all_pod_files_ok
( all_pod_files
( @poddirs ) );