Bug 16554: rewrite mandatory and sample data - es-ES
[koha.git] / xt / author / podcorrectness.t
blobed3fc5d728933f772d10b727329534f3910bbffa
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
5 =head2 podcorrectness.t
7 This test file checks all perl modules in the C4 directory for POD
8 correctness. It typically finds things like pod tags withouth blank
9 lines immediately before or after them, unknown directives, or =over,
10 =item, and =back in the wrong order.
12 You must have Test::Pod installed.
14 One good way to run this is with C<prove -v
15 xt/author/podcorrectness.t>
17 =cut
19 use Test::More;
20 eval "use Test::Pod 1.00";
21 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
22 my @poddirs = qw( C4 Koha );
23 all_pod_files_ok( all_pod_files( @poddirs ) );