neovim/test/functional/ex_cmds/quit_spec.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
295 B
Lua
Raw Normal View History

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)