0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.2.0401: not enough test coverage for evalvars.c

Problem:    Not enough test coverage for evalvars.c.
Solution:   Add more tests. (Yegappan Lakshmanan, closes #5804)
This commit is contained in:
Bram Moolenaar
2020-03-18 19:32:26 +01:00
parent 3cdcb090a6
commit 8dfcce3a78
12 changed files with 274 additions and 12 deletions

View File

@@ -800,6 +800,10 @@ func Test_getbufvar()
call assert_equal(0, getbufvar(bnr, '&autoindent'))
call assert_equal(0, getbufvar(bnr, '&autoindent', 1))
" Set and get a buffer-local variable
call setbufvar(bnr, 'bufvar_test', ['one', 'two'])
call assert_equal(['one', 'two'], getbufvar(bnr, 'bufvar_test'))
" Open new window with forced option values
set fileformats=unix,dos
new ++ff=dos ++bin ++enc=iso-8859-2
@@ -1498,6 +1502,10 @@ func Test_func_sandbox()
call assert_fails('call Fsandbox()', 'E48:')
delfunc Fsandbox
" From a sandbox try to set a predefined variable (which cannot be modified
" from a sandbox)
call assert_fails('sandbox let v:lnum = 10', 'E794:')
endfunc
func EditAnotherFile()
@@ -2030,14 +2038,6 @@ func Test_range()
" sort()
call assert_equal([0, 1, 2, 3, 4, 5], sort(range(5, 0, -1)))
" 'spellsuggest'
func MySuggest()
return range(3)
endfunc
set spell spellsuggest=expr:MySuggest()
call assert_equal([], spellsuggest('baord', 3))
set nospell spellsuggest&
" string()
call assert_equal('[0, 1, 2, 3, 4]', string(range(5)))