# HG changeset patch # User Christian Brabandt # Date 1495532703 -7200 # Node ID b3815e49181199584fc38b210a27e4adb18ca6eb # Parent defbf8bfc6f67f83567cfa8967ca0e9997beeb96 patch 8.0.0601: no test coverage for :spellrepall commit https://github.com/vim/vim/commit/545cb79da586be3333a0a55616046f94b01f6b1a Author: Bram Moolenaar Date: Tue May 23 11:31:22 2017 +0200 patch 8.0.0601: no test coverage for :spellrepall Problem: No test coverage for :spellrepall. Solution: Add a test. (Dominique Pelle, closes https://github.com/vim/vim/issues/1717) diff --git a/src/testdir/test_spell.vim b/src/testdir/test_spell.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 601, +/**/ 600, /**/ 599,