summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_method.vim
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2024-05-17 18:20:43 +0200
committerChristian Brabandt <cb@256bit.org>2024-05-17 18:20:43 +0200
commitfe424d13ef6e5486923f23f15bb6951e3079412e (patch)
tree7d0bcbeab9b24aa19a24296f9e8e210ad238cc35 /src/testdir/test_method.vim
parente595e9c31b651bcb15d2f40ff00fffa432370484 (diff)
patch 9.1.0415: Some functions are not testedv9.1.0415
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>
Diffstat (limited to 'src/testdir/test_method.vim')
-rw-r--r--src/testdir/test_method.vim7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/testdir/test_method.vim b/src/testdir/test_method.vim
index 120fadecbc..f18ac14340 100644
--- a/src/testdir/test_method.vim
+++ b/src/testdir/test_method.vim
@@ -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()