Bug 20176: [sql_modes] Set biblio.datecreated to NOW if not defined
[koha.git] / xt / author / podcorrectness.t
1 #!/usr/bin/env perl
2 use Modern::Perl;
3 =head2 podcorrectness.t
4
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.
9
10 You must have Test::Pod installed.
11
12 One good way to run this is with C<prove -v
13 xt/author/podcorrectness.t>
14
15 =cut
16
17 use Test::More;
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 ) );
22