Files
neovim/test/functional/ex_cmds/quit_spec.lua

15 lines
295 B
Lua

local helpers = require('test.functional.helpers')
local clear = helpers.clear
describe(':qa', function()
before_each(function()
clear('qa')
end)
it('verify #3334', function()
-- just testing if 'qa' passed as a program argument wont result in memory
-- errors
end)
end)