view src/testdir/test_feedkeys.vim @ 15922:0d6331501d19 v8.1.0967

patch 8.1.0967: stray dependency in test Makefile commit https://github.com/vim/vim/commit/1417031cfd31dd1af9bab686237cb1c8591e0a37 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 21 21:50:46 2019 +0100 patch 8.1.0967: stray dependency in test Makefile Problem: Stray dependency in test Makefile. Solution: Remove it. (Masato Nishihata, closes https://github.com/vim/vim/issues/4018)
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Feb 2019 22:00:10 +0100
parents 6b70b9cdebfc
children 08940efa6b4e
line wrap: on
line source

" Test feedkeys() function.

func Test_feedkeys_x_with_empty_string()
  new
  call feedkeys("ifoo\<Esc>")
  call assert_equal('', getline('.'))
  call feedkeys('', 'x')
  call assert_equal('foo', getline('.'))

  " check it goes back to normal mode immediately.
  call feedkeys('i', 'x')
  call assert_equal('foo', getline('.'))
  quit!
endfunc