From e9b7ce803f8cece7030b4db8c633d1a137a4b6a8 Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Wed, 9 Jul 2008 11:55:11 -0500 Subject: [PATCH] adding pod spelling test Signed-off-by: Joshua Ferraro --- xt/author/pod_spell.t | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 xt/author/pod_spell.t diff --git a/xt/author/pod_spell.t b/xt/author/pod_spell.t new file mode 100644 index 0000000000..65f7e0bc02 --- /dev/null +++ b/xt/author/pod_spell.t @@ -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 + +=cut + +use Test::More; +eval "use Test::Spelling"; +plan skip_all => "Test::Spelling required for testing POD spelling" if $@; + +all_pod_files_spelling_ok(); + -- 2.39.5