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

patch 9.1.0415: Some functions are not tested

Problem:  Some functions are not tested
Solution: Add a few more tests, fix a few minor problems
          (Yegappan Lakshmanan)

closes: #14789

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-17 18:20:43 +02:00
committed by Christian Brabandt
parent e595e9c31b
commit fe424d13ef
16 changed files with 184 additions and 14 deletions

View File

@@ -136,6 +136,13 @@ func Test_method_syntax()
call assert_fails('eval [1, 2, 3] ->sort ()', 'E274:')
call assert_fails('eval [1, 2, 3]-> sort ()', 'E274:')
call assert_fails('eval [1, 2, 3]-> sort()', 'E274:')
" Test for using a method name containing a curly brace name
let s = 'len'
call assert_equal(4, "xxxx"->str{s}())
" Test for using a method in an interpolated string
call assert_equal('4', $'{"xxxx"->strlen()}')
endfunc
func Test_method_lambda()