forked from aniani/vim
patch 8.2.3744: E854 is not tested; some spelling suggestions are not tested
Problem: E854 is not tested; some spelling suggestions are not tested. Solution: Add a couple of tests. (Dominique Pellé, closes #9279)
This commit is contained in:
committed by
Bram Moolenaar
parent
5e18ccc60b
commit
f645ee47c8
@@ -267,6 +267,11 @@ func Test_spellsuggest()
|
||||
call assert_equal(['Third'], spellsuggest('THird', 1))
|
||||
call assert_equal(['All'], spellsuggest('ALl', 1))
|
||||
|
||||
" Special suggestion for repeated 'the the'.
|
||||
call assert_inrange(0, 2, index(spellsuggest('the the', 3), 'the'))
|
||||
call assert_inrange(0, 2, index(spellsuggest('the the', 3), 'the'))
|
||||
call assert_inrange(0, 2, index(spellsuggest('The the', 3), 'The'))
|
||||
|
||||
call assert_fails("call spellsuggest('maxch', [])", 'E745:')
|
||||
call assert_fails("call spellsuggest('maxch', 2, [])", 'E745:')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user