0
0
mirror of https://github.com/vim/vim.git synced 2025-10-28 09:27:14 -04:00

patch 8.2.4835: Vim9: some lines not covered by tests

Problem:    Vim9: some lines not covered by tests.
Solution:   Add a few more tests.  Fix disassemble output.
This commit is contained in:
Bram Moolenaar
2022-04-27 22:15:40 +01:00
parent 06651630ee
commit 95e4dd813a
5 changed files with 49 additions and 1 deletions

View File

@@ -1691,6 +1691,9 @@ def Test_substitute_expr()
endfor
assert_equal('yes no abc', getline(1))
setline(1, 'from')
v9.CheckDefExecFailure(['s/from/\=g:notexist/'], 'E121: Undefined variable: g:notexist')
bwipe!
v9.CheckDefFailure(['s/from/\="x")/'], 'E488:')