adding pod spelling test
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
0b69b8ffc3
commit
e9b7ce803f
1 changed files with 22 additions and 0 deletions
22
xt/author/pod_spell.t
Normal file
22
xt/author/pod_spell.t
Normal file
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
=head2 pod_spell.t
|
||||
|
||||
This test script attempts to spellcheck text in perl's POD
|
||||
documentation.
|
||||
|
||||
You must have Test::Spelling installed.
|
||||
|
||||
One good way to run this is with C<prove -v
|
||||
xt/author/pod_spell.t>
|
||||
|
||||
=cut
|
||||
|
||||
use Test::More;
|
||||
eval "use Test::Spelling";
|
||||
plan skip_all => "Test::Spelling required for testing POD spelling" if $@;
|
||||
|
||||
all_pod_files_spelling_ok();
|
||||
|
Loading…
Reference in a new issue