blob: 83b1c5a54072bf2492a42f086cdfdb56393ace1d (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | local n = require('test.functional.testnvim')()
local clear = n.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)
 |