diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-17 21:33:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-17 21:33:30 +0100 |
commit | bc2b71d44a0b90b6aeb3534a76912fccbe5577df (patch) | |
tree | a77a42312e3d84710013ca0ba0f919ab79867560 /src/testdir/test_join.vim | |
parent | b13af50f73dd89503c915f76fcf92be58789521a (diff) | |
download | vim-git-bc2b71d44a0b90b6aeb3534a76912fccbe5577df.tar.gz |
patch 8.2.0270: some code not covered by testsv8.2.0270
Problem: Some code not covered by tests.
Solution: Add test cases. (Yegappan Lakshmanan, closes #5649)
Diffstat (limited to 'src/testdir/test_join.vim')
-rw-r--r-- | src/testdir/test_join.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test_join.vim b/src/testdir/test_join.vim index 377edab1e..fdd9e05eb 100644 --- a/src/testdir/test_join.vim +++ b/src/testdir/test_join.vim @@ -436,5 +436,11 @@ func Test_join_lines() call setline(1, ['a', 'b', '', 'c', 'd']) normal 5J call assert_equal('a b c d', getline(1)) + call setline(1, ['a', 'b', 'c']) + 2,2join + call assert_equal(['a', 'b', 'c'], getline(1, '$')) + call assert_equal(2, line('.')) + 2join + call assert_equal(['a', 'b c'], getline(1, '$')) bwipe! endfunc |