adding pod spelling test

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Andrew Moore 2008-07-09 11:55:11 -05:00 committed by Joshua Ferraro
parent 0b69b8ffc3
commit e9b7ce803f

22
xt/author/pod_spell.t Normal file
View 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();