adding pod spelling test
authorAndrew Moore <andrew.moore@liblime.com>
Wed, 9 Jul 2008 16:55:11 +0000 (11:55 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Thu, 10 Jul 2008 14:10:40 +0000 (09:10 -0500)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>

xt/author/pod_spell.t [new file with mode: 0644]

diff --git a/xt/author/pod_spell.t b/xt/author/pod_spell.t
new file mode 100644 (file)
index 0000000..65f7e0b
--- /dev/null
@@ -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();
+