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

patch 8.2.0282: Vim9: setting number option not tested

Problem:    Vim9: setting number option not tested.
Solution:   Add more tests.   Fix assigning to global variable.
This commit is contained in:
Bram Moolenaar
2020-02-19 18:14:44 +01:00
parent a2f6e42ded
commit 401d9ffb5a
4 changed files with 19 additions and 6 deletions

View File

@@ -596,8 +596,6 @@ let g:dict_one = #{one: 1}
let $TESTVAR = 'testvar'
let @a = 'register a'
" test low level expression
def Test_expr7_number()
" number constant
@@ -675,6 +673,8 @@ def Test_expr7_option()
" option
set ts=11
assert_equal(11, &ts)
&ts = 9
assert_equal(9, &ts)
set ts=8
set grepprg=some\ text
assert_equal('some text', &grepprg)
@@ -690,7 +690,7 @@ def Test_expr7_environment()
enddef
def Test_expr7_register()
" register
@a = 'register a'
assert_equal('register a', @a)
enddef
@@ -724,7 +724,8 @@ func Test_expr7_fails()
call CheckDefFailure("let x = @", "E1002:")
call CheckDefFailure("let x = @<", "E354:")
call CheckDefFailure("let x = &notexist", "E113:")
call CheckDefFailure("let x = &notexist", 'E113:')
call CheckDefExecFailure("&grepprg = [343]", 'E1051:')
endfunc
let g:Funcrefs = [function('add')]