Bug 12333: Acquisitions toolbar and removing Add to basket section at bottom
[koha.git] / xt / author / pod_spell.t
blob65f7e0bc0249fc4485ad68cf9e18855ce472ef21
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
5 =head2 pod_spell.t
7 This test script attempts to spellcheck text in perl's POD
8 documentation.
10 You must have Test::Spelling installed.
12 One good way to run this is with C<prove -v
13 xt/author/pod_spell.t>
15 =cut
17 use Test::More;
18 eval "use Test::Spelling";
19 plan skip_all => "Test::Spelling required for testing POD spelling" if $@;
21 all_pod_files_spelling_ok();