neovim/test/functional/legacy/source_spec.lua
dundargoc 052498ed42 test: improve test conventions
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.
2024-04-23 18:17:04 +02:00

31 lines
862 B
Lua

local t = require('test.testutil')
local n = require('test.functional.testnvim')()
local Screen = require('test.functional.ui.screen')
local clear = n.clear
local feed = n.feed
local write_file = t.write_file
before_each(clear)
describe(':source!', function()
-- oldtest: Test_nested_script()
it('gives E22 when scripts nested too deep', function()
write_file(
'Xscript.vim',
[[
:source! Xscript.vim
]]
)
local screen = Screen.new(75, 6)
screen:attach()
feed(':source! Xscript.vim\n')
screen:expect([[
^ |
{1:~ }|*4
{9:E22: Scripts nested too deep} |
]])
os.remove('Xscript.vim')
end)
end)