mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
052498ed42
Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
42 lines
966 B
Lua
42 lines
966 B
Lua
-- Specs for :wundo and underlying functions
|
|
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local command = n.command
|
|
local clear = n.clear
|
|
local eval = n.eval
|
|
local spawn = n.spawn
|
|
local nvim_prog = n.nvim_prog
|
|
local set_session = n.set_session
|
|
|
|
describe(':wundo', function()
|
|
before_each(clear)
|
|
after_each(function()
|
|
os.remove(eval('getcwd()') .. '/foo')
|
|
end)
|
|
|
|
it('safely fails on new, non-empty buffer', function()
|
|
command('normal! iabc')
|
|
command('wundo foo') -- This should not segfault. #1027
|
|
--TODO: check messages for error message
|
|
end)
|
|
end)
|
|
|
|
describe('u_* functions', function()
|
|
it('safely fail on new, non-empty buffer', function()
|
|
local session = spawn({
|
|
nvim_prog,
|
|
'-u',
|
|
'NONE',
|
|
'-i',
|
|
'NONE',
|
|
'--embed',
|
|
'-c',
|
|
'set undodir=. undofile',
|
|
})
|
|
set_session(session)
|
|
command('echo "True"') -- Should not error out due to crashed Neovim
|
|
session:close()
|
|
end)
|
|
end)
|