Jonathan Druart
f1f9c6dc74
.pm must not have -x .t must have -x .pl must have -x Test plan: Apply only the first patch, run the tests and confirm that the failures make sense Apply this patch and confirm that the test now returns green Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
22 lines
607 B
Perl
Executable file
22 lines
607 B
Perl
Executable file
#!/usr/bin/env perl
|
|
use Modern::Perl;
|
|
=head2 podcorrectness.t
|
|
|
|
This test file checks all perl modules in the C4 directory for POD
|
|
correctness. It typically finds things like pod tags withouth blank
|
|
lines immediately before or after them, unknown directives, or =over,
|
|
=item, and =back in the wrong order.
|
|
|
|
You must have Test::Pod installed.
|
|
|
|
One good way to run this is with C<prove -v
|
|
xt/author/podcorrectness.t>
|
|
|
|
=cut
|
|
|
|
use Test::More;
|
|
eval "use Test::Pod 1.00";
|
|
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
|
|
my @poddirs = qw( C4 Koha );
|
|
all_pod_files_ok( all_pod_files( @poddirs ) );
|
|
|