mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 21:25:04 -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.
15 lines
295 B
Lua
15 lines
295 B
Lua
local n = require('test.functional.testnvim')()
|
|
|
|
local clear = n.clear
|
|
|
|
describe(':qa', function()
|
|
before_each(function()
|
|
clear('--cmd', 'qa')
|
|
end)
|
|
|
|
it('verify #3334', function()
|
|
-- just testing if 'qa' passed as a program argument won't result in memory
|
|
-- errors
|
|
end)
|
|
end)
|