mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
df646572c5
Co-authored-by: Raphael <glephunter@gmail.com> Co-authored-by: smjonas <jonas.strittmatter@gmx.de> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
15 lines
316 B
Lua
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)
|
|
|