0
0
mirror of https://github.com/vim/vim.git synced 2025-10-17 07:44:28 -04:00

patch 8.2.0724: Vim9: appending to buffer/window/tab variable not tested

Problem:    Vim9: appending to buffer/window/tab variable not tested
Solution:   Add a test.
This commit is contained in:
Bram Moolenaar
2020-05-09 18:44:56 +02:00
parent 1c74721233
commit 396f3138ca
2 changed files with 8 additions and 0 deletions

View File

@@ -135,18 +135,24 @@ def Test_assignment_local()
assert_equal('yes', b:existing)
b:existing = 'no'
assert_equal('no', b:existing)
b:existing ..= 'NO'
assert_equal('noNO', b:existing)
w:newvar = 'new'
assert_equal('new', w:newvar)
assert_equal('yes', w:existing)
w:existing = 'no'
assert_equal('no', w:existing)
w:existing ..= 'NO'
assert_equal('noNO', w:existing)
t:newvar = 'new'
assert_equal('new', t:newvar)
assert_equal('yes', t:existing)
t:existing = 'no'
assert_equal('no', t:existing)
t:existing ..= 'NO'
assert_equal('noNO', t:existing)
enddef
call Test_assignment_local_internal()
END