1
0
forked from aniani/vim

patch 9.1.0419: eval.c not sufficiently tested

Problem:  eval.c not sufficiently tested
Solution: Add a few more additional tests for eval.c,
          (Yegappan Lakshmanan)

closes: #14799

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Yegappan Lakshmanan
2024-05-19 09:06:50 +02:00
committed by Christian Brabandt
parent 5f75714730
commit 4776e64e72
10 changed files with 76 additions and 15 deletions

View File

@@ -7510,12 +7510,13 @@ func Test_for_over_string()
endfor
call assert_equal('', res)
" Test for ignoring loop var assignment
let c = 0
for _ in 'abc'
let c += 1
" Test for using "_" as the loop variable
let i = 0
let s = 'abc'
for _ in s
call assert_equal(s[i], _)
let i += 1
endfor
call assert_equal(3, c)
endfunc
" Test for deeply nested :source command {{{1