comparison src/testdir/test_join.vim @ 19425:67fbe280a502 v8.2.0270

patch 8.2.0270: some code not covered by tests Commit: https://github.com/vim/vim/commit/bc2b71d44a0b90b6aeb3534a76912fccbe5577df Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 17 21:33:30 2020 +0100 patch 8.2.0270: some code not covered by tests Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5649)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Feb 2020 21:45:04 +0100
parents 4c0b420e7327
children 08940efa6b4e
comparison
equal deleted inserted replaced
19424:38c3f2b16596 19425:67fbe280a502
434 %join 434 %join
435 call assert_equal('a b c d', getline(1)) 435 call assert_equal('a b c d', getline(1))
436 call setline(1, ['a', 'b', '', 'c', 'd']) 436 call setline(1, ['a', 'b', '', 'c', 'd'])
437 normal 5J 437 normal 5J
438 call assert_equal('a b c d', getline(1)) 438 call assert_equal('a b c d', getline(1))
439 call setline(1, ['a', 'b', 'c'])
440 2,2join
441 call assert_equal(['a', 'b', 'c'], getline(1, '$'))
442 call assert_equal(2, line('.'))
443 2join
444 call assert_equal(['a', 'b c'], getline(1, '$'))
439 bwipe! 445 bwipe!
440 endfunc 446 endfunc