Mercurial > vim
changeset 13855:536874138ecd v8.0.1799
patch 8.0.1799: no test for :registers command
commit https://github.com/vim/vim/commit/7ce551f317a0bb92f8c0521e96325301e2d220ca
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 6 17:32:19 2018 +0200
patch 8.0.1799: no test for :registers command
Problem: No test for :registers command.
Solution: Add a test. (Dominique Pelle, closes https://github.com/vim/vim/issues/2880)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 06 May 2018 17:45:06 +0200 |
parents | a5ad04c23f38 |
children | 54b8c9c42b24 |
files | src/testdir/test_registers.vim src/version.c |
diffstat | 2 files changed, 40 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_registers.vim +++ b/src/testdir/test_registers.vim @@ -25,3 +25,41 @@ func Test_yank_shows_register() bwipe! endfunc + +func Test_display_registers() + e file1 + e file2 + call setline(1, ['foo', 'bar']) + /bar + exe 'norm! y2l"axx' + call feedkeys("i\<C-R>=2*4\n\<esc>") + call feedkeys(":ls\n", 'xt') + + let a = execute('display') + let b = execute('registers') + + call assert_equal(a, b) + call assert_match('^\n--- Registers ---\n' + \ . '"" a\n' + \ . '"0 ba\n' + \ . '"1 b\n' + \ . '"a b\n' + \ . '.*' + \ . '"- a\n' + \ . '.*' + \ . '": ls\n' + \ . '"% file2\n' + \ . '"# file1\n' + \ . '"/ bar\n' + \ . '"= 2\*4', a) + + let a = execute('registers a') + call assert_match('^\n--- Registers ---\n' + \ . '"a b', a) + + let a = execute('registers :') + call assert_match('^\n--- Registers ---\n' + \ . '": ls', a) + + bwipe! +endfunc