mirror of
https://github.com/neovim/neovim.git
synced 2024-12-27 14:21:31 -07:00
15 lines
337 B
Lua
15 lines
337 B
Lua
|
local helpers = require('test.functional.helpers')
|
||
|
local execute, eq, clear = helpers.execute, helpers.eq, 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)
|
||
|
|