neovim/test/functional/legacy/source_spec.lua
bfredl e61228a214 fix(tests): needing two calls to setup a screen is cringe
Before calling "attach" a screen object is just a dummy container for
(row, col) values whose purpose is to be sent as part of the "attach"
function call anyway.

Just create the screen in an attached state directly. Keep the complete
(row, col, options) config together. It is still completely valid to
later detach and re-attach as needed, including to another session.
2024-11-14 12:40:57 +01:00

30 lines
842 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)
feed(':source! Xscript.vim\n')
screen:expect([[
^ |
{1:~ }|*4
{9:E22: Scripts nested too deep} |
]])
os.remove('Xscript.vim')
end)
end)