neovim/test/functional/ex_cmds/quit_spec.lua
dundargoc df646572c5
docs: fix typos (#20394)
Co-authored-by: Raphael <glephunter@gmail.com>
Co-authored-by: smjonas <jonas.strittmatter@gmx.de>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
2022-09-30 09:53:52 +02:00

15 lines
316 B
Lua

local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.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)