aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-23 11:27:16 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-23 11:50:37 -0400
commit1ed5abfe888b364e372ac280fb2ebf971f4fce23 (patch)
tree2cb29b581c3ea9d2eae0211bcc663006c4650482 /src/nvim/testdir
parentd551a49958230077f9bc78587636227b2518149a (diff)
downloadrneovim-1ed5abfe888b364e372ac280fb2ebf971f4fce23.tar.gz
rneovim-1ed5abfe888b364e372ac280fb2ebf971f4fce23.tar.bz2
rneovim-1ed5abfe888b364e372ac280fb2ebf971f4fce23.zip
vim-patch:8.0.0794: checking translations fails with multiple NL
Problem: The script to check translations fails if there is more than one NL in one line. Solution: Count the number of NL characters. Make count() accept a string. https://github.com/vim/vim/commit/9966b21a57277986217aa28237d6c247ebd060d7
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_functions.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim
index c59134908c..3b16f2ce9f 100644
--- a/src/nvim/testdir/test_functions.vim
+++ b/src/nvim/testdir/test_functions.vim
@@ -680,7 +680,13 @@ func Test_count()
call assert_equal(0, count(d, 'c', 1))
call assert_fails('call count(d, "a", 0, 1)', 'E474:')
- call assert_fails('call count("a", "a")', 'E712:')
+
+ call assert_equal(0, count("foo", "bar"))
+ call assert_equal(1, count("foo", "oo"))
+ call assert_equal(2, count("foo", "o"))
+ call assert_equal(0, count("foo", "O"))
+ call assert_equal(2, count("foo", "O", 1))
+ call assert_equal(2, count("fooooo", "oo"))
endfunc
func Test_changenr()