@@ -, +, @@ --- xt/author/pod_spell.t | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 xt/author/pod_spell.t --- a/xt/author/pod_spell.t +++ a/xt/author/pod_spell.t @@ -1,22 +0,0 @@ -#!/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(); - --