mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
ff470bb853
It is otherwise impossible to determine which test failed sanitizer/valgrind check. test/functional/helpers.lua module return was changed so that tests which do not provide after_each function to get new check will automatically fail.
25 lines
571 B
Lua
25 lines
571 B
Lua
-- Test for CTRL-W in Insert mode
|
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
|
local clear, feed, expect = helpers.clear, helpers.feed, helpers.expect
|
|
|
|
describe('CTRL-W in Insert mode', function()
|
|
setup(clear)
|
|
|
|
it('works for multi-byte characters', function()
|
|
|
|
for i = 1, 6 do
|
|
feed('o wwwこんにちわ世界ワールドvim ' .. string.rep('<C-w>', i) .. '<esc>')
|
|
end
|
|
|
|
expect([[
|
|
|
|
wwwこんにちわ世界ワールド
|
|
wwwこんにちわ世界
|
|
wwwこんにちわ
|
|
www
|
|
|
|
]])
|
|
end)
|
|
end)
|