From: Bram Moolenaar Date: Tue, 23 May 2017 09:31:22 +0000 (+0200) Subject: patch 8.0.0601: no test coverage for :spellrepall X-Git-Tag: v8.0.0601 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=545cb79da586be3333a0a55616046f94b01f6b1a;p=vim patch 8.0.0601: no test coverage for :spellrepall Problem: No test coverage for :spellrepall. Solution: Add a test. (Dominique Pelle, closes #1717) --- diff --git a/src/testdir/test_spell.vim b/src/testdir/test_spell.vim index 0688d615e..80a66f280 100644 --- a/src/testdir/test_spell.vim +++ b/src/testdir/test_spell.vim @@ -27,3 +27,20 @@ func Test_z_equal_on_invalid_utf8_word() set nospell bwipe! endfunc + +func Test_spellreall() + new + set spell + call assert_fails('spellrepall', 'E752:') + call setline(1, ['A speling mistake. The same speling mistake.', + \ 'Another speling mistake.']) + call feedkeys(']s1z=', 'tx') + call assert_equal('A spelling mistake. The same speling mistake.', getline(1)) + call assert_equal('Another speling mistake.', getline(2)) + spellrepall + call assert_equal('A spelling mistake. The same spelling mistake.', getline(1)) + call assert_equal('Another spelling mistake.', getline(2)) + call assert_fails('spellrepall', 'E753:') + set spell& + bwipe! +endfunc diff --git a/src/version.c b/src/version.c index 7262a3d41..202ce954b 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 601, /**/ 600, /**/