mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	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)
 | 
						|
 |