mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 21:55:17 -07:00
14 lines
294 B
Lua
14 lines
294 B
Lua
local t = require('test.functional.testutil')()
|
|
local clear = t.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)
|