From fc459935123c7da85a85ec63b86e334f5237ca00 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 6 Sep 2017 10:42:28 -0300 Subject: [PATCH] Bug 19262: Remove xt/author/pod_spell.t If you run `prove xt/author/pod_spell.t` without having Test::Spelling installed, it will skip the tests. If you install the lib-test-spelling-perl, the test will fail: xt/author/pod_spell.t .. You said to run 0 tests at xt/author/pod_spell.t line 21. xt/author/pod_spell.t .. Dubious, test returned 25 (wstat 6400, 0x1900) No subtests run This is because the call to all_pod_files_spelling_ok is expecting a path If we try to fix it with adding "." as parameter, the tests will raise tone of errors. Let's remove this file --- xt/author/pod_spell.t | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 xt/author/pod_spell.t diff --git a/xt/author/pod_spell.t b/xt/author/pod_spell.t deleted file mode 100644 index 65f7e0b..0000000 --- a/xt/author/pod_spell.t +++ /dev/null @@ -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(); - -- 2.1.4