xref: /vim-8.2.3635/src/testdir/test_global.vim (revision cd5c8f82)
1
2func Test_yank_put_clipboard()
3  new
4  call setline(1, ['a', 'b', 'c'])
5  set clipboard=unnamed
6  g/^/normal yyp
7  call assert_equal(['a', 'a', 'b', 'b', 'c', 'c'], getline(1, 6))
8
9  set clipboard&
10  bwipe!
11endfunc
12