mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			667 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			667 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Test if fnameescape is correct for special chars like!
 | |
| 
 | |
| local helpers = require('test.functional.helpers')
 | |
| local clear = helpers.clear
 | |
| local execute, expect = helpers.execute, helpers.expect
 | |
| 
 | |
| describe('fnameescape', function()
 | |
|   setup(clear)
 | |
| 
 | |
|   it('is working', function()
 | |
|     execute('let fname = "Xspa ce"')
 | |
|     execute('try', 'exe "w! " . fnameescape(fname)', "put='Space'", 'endtry')
 | |
|     execute('let fname = "Xemark!"')
 | |
|     execute('try', 'exe "w! " . fnameescape(fname)', "put='ExclamationMark'", 'endtry')
 | |
| 
 | |
|     expect([[
 | |
|       
 | |
|       Space
 | |
|       ExclamationMark]])
 | |
|   end)
 | |
| 
 | |
|   teardown(function()
 | |
|     os.remove("Xspa ce")
 | |
|     os.remove("Xemark!")
 | |
|   end)
 | |
| end)
 | 
