mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 052498ed42
			
		
	
	052498ed42
	
	
	
		
			
			Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
		
			
				
	
	
		
			31 lines
		
	
	
		
			752 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			752 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| local t = require('test.testutil')
 | |
| local n = require('test.functional.testnvim')()
 | |
| 
 | |
| local eq, command, fn = t.eq, n.command, n.fn
 | |
| local ok = t.ok
 | |
| local matches = t.matches
 | |
| local clear = n.clear
 | |
| local feed = n.feed
 | |
| 
 | |
| describe(':edit', function()
 | |
|   before_each(function()
 | |
|     clear()
 | |
|   end)
 | |
| 
 | |
|   it('without arguments does not restart :terminal buffer', function()
 | |
|     command('terminal')
 | |
|     feed([[<C-\><C-N>]])
 | |
|     local bufname_before = fn.bufname('%')
 | |
|     local bufnr_before = fn.bufnr('%')
 | |
|     matches('^term://', bufname_before) -- sanity
 | |
| 
 | |
|     command('edit')
 | |
| 
 | |
|     local bufname_after = fn.bufname('%')
 | |
|     local bufnr_after = fn.bufnr('%')
 | |
|     ok(fn.line('$') > 1)
 | |
|     eq(bufname_before, bufname_after)
 | |
|     eq(bufnr_before, bufnr_after)
 | |
|   end)
 | |
| end)
 |