mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.2.0270: some code not covered by tests
Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5649)
This commit is contained in:
@@ -894,4 +894,18 @@ func Test_block_insert_replace_tabs()
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
" Test for * register in :
|
||||
func Test_star_register()
|
||||
call assert_fails('*bfirst', 'E16:')
|
||||
new
|
||||
call setline(1, ['foo', 'bar', 'baz', 'qux'])
|
||||
exe "normal jVj\<ESC>"
|
||||
*yank r
|
||||
call assert_equal("bar\nbaz\n", @r)
|
||||
|
||||
delmarks < >
|
||||
call assert_fails('*yank', 'E20:')
|
||||
close!
|
||||
endfunc
|
||||
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
||||
|
Reference in New Issue
Block a user