1" Test feedkeys() function.
2
3func Test_feedkeys_x_with_empty_string()
4  new
5  call feedkeys("ifoo\<Esc>")
6  call assert_equal('', getline('.'))
7  call feedkeys('', 'x')
8  call assert_equal('foo', getline('.'))
9
10  " check it goes back to normal mode immediately.
11  call feedkeys('i', 'x')
12  call assert_equal('foo', getline('.'))
13  quit!
14endfunc
15