mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			557 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			557 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
local helpers = require('test.functional.helpers')(after_each)
 | 
						|
local command, clear = helpers.command, helpers.clear
 | 
						|
local source, expect = helpers.source, helpers.expect
 | 
						|
 | 
						|
describe('options', function()
 | 
						|
  setup(clear)
 | 
						|
 | 
						|
  it('should not throw any exception', function()
 | 
						|
    command('options')
 | 
						|
  end)
 | 
						|
end)
 | 
						|
 | 
						|
describe('set', function()
 | 
						|
  setup(clear)
 | 
						|
 | 
						|
  it("should keep two comma when 'path' is changed", function()
 | 
						|
    source([[
 | 
						|
      set path=foo,,bar
 | 
						|
      set path-=bar
 | 
						|
      set path+=bar
 | 
						|
      $put =&path]])
 | 
						|
 | 
						|
    expect([[
 | 
						|
 | 
						|
      foo,,bar]])
 | 
						|
  end)
 | 
						|
end)
 |