mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00: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:
@ -386,4 +386,15 @@ func Test_put_reg_restart_mode()
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
" Test for executing a register using :@ command
|
||||
func Test_execute_register()
|
||||
call setreg('r', [])
|
||||
call assert_beeps('@r')
|
||||
let i = 1
|
||||
let @q = 'let i+= 1'
|
||||
@q
|
||||
@
|
||||
call assert_equal(3, i)
|
||||
endfunc
|
||||
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
||||
|
Reference in New Issue
Block a user