mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 14:11:15 -07:00
29 lines
819 B
Lua
29 lines
819 B
Lua
|
local helpers = require('test.functional.helpers')
|
||
|
local Screen = require('test.functional.ui.screen')
|
||
|
|
||
|
local clear, eval, execute, feed, nvim, nvim_dir = helpers.clear, helpers.eval,
|
||
|
helpers.execute, helpers.feed, helpers.nvim, helpers.nvim_dir
|
||
|
local wait = helpers.wait
|
||
|
|
||
|
describe('TermClose event', function()
|
||
|
before_each(function()
|
||
|
clear()
|
||
|
nvim('set_option', 'shell', nvim_dir .. '/shell-test')
|
||
|
nvim('set_option', 'shellcmdflag', 'EXE')
|
||
|
screen = Screen.new(20, 4)
|
||
|
screen:attach(false)
|
||
|
end)
|
||
|
|
||
|
it('works as expected', function()
|
||
|
execute('autocmd TermClose * echomsg "TermClose works!"')
|
||
|
execute('terminal')
|
||
|
feed('<c-\\><c-n>')
|
||
|
screen:expect([[
|
||
|
ready $ |
|
||
|
[Process exited 0] |
|
||
|
^ |
|
||
|
TermClose works! |
|
||
|
]])
|
||
|
end)
|
||
|
end)
|