mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			998 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			998 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Specs for :wundo and underlying functions
 | |
| 
 | |
| local helpers = require('test.functional.helpers')(after_each)
 | |
| local command, clear, eval, spawn, nvim_prog, set_session =
 | |
|   helpers.command,
 | |
|   helpers.clear,
 | |
|   helpers.eval,
 | |
|   helpers.spawn,
 | |
|   helpers.nvim_prog,
 | |
|   helpers.set_session
 | |
| 
 | |
| describe(':wundo', function()
 | |
|   before_each(clear)
 | |
|   after_each(function()
 | |
|     os.remove(eval('getcwd()') .. '/foo')
 | |
|   end)
 | |
| 
 | |
|   it('safely fails on new, non-empty buffer', function()
 | |
|     command('normal! iabc')
 | |
|     command('wundo foo') -- This should not segfault. #1027
 | |
|     --TODO: check messages for error message
 | |
|   end)
 | |
| end)
 | |
| 
 | |
| describe('u_* functions', function()
 | |
|   it('safely fail on new, non-empty buffer', function()
 | |
|     local session = spawn({
 | |
|       nvim_prog,
 | |
|       '-u',
 | |
|       'NONE',
 | |
|       '-i',
 | |
|       'NONE',
 | |
|       '--embed',
 | |
|       '-c',
 | |
|       'set undodir=. undofile',
 | |
|     })
 | |
|     set_session(session)
 | |
|     command('echo "True"') -- Should not error out due to crashed Neovim
 | |
|     session:close()
 | |
|   end)
 | |
| end)
 | 
