aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds/quit_spec.lua
blob: 4cc15cc378049d7abf62ccd925dae83b4b35ef6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
local t = require('test.functional.testutil')(after_each)
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)