mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			32 lines
		
	
	
		
			789 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			789 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- Tests for writefile()
 | 
						|
 | 
						|
local n = require('test.functional.testnvim')()
 | 
						|
 | 
						|
local clear, command, expect = n.clear, n.command, n.expect
 | 
						|
 | 
						|
describe('writefile', function()
 | 
						|
  setup(clear)
 | 
						|
 | 
						|
  it('is working', function()
 | 
						|
    command('%delete _')
 | 
						|
    command('let f = tempname()')
 | 
						|
    command('call writefile(["over","written"], f, "b")')
 | 
						|
    command('call writefile(["hello","world"], f, "b")')
 | 
						|
    command('call writefile(["!", "good"], f, "a")')
 | 
						|
    command('call writefile(["morning"], f, "ab")')
 | 
						|
    command('call writefile(["", "vimmers"], f, "ab")')
 | 
						|
    command('bwipeout!')
 | 
						|
    command('$put =readfile(f)')
 | 
						|
    command('1 delete _')
 | 
						|
    command('call delete(f)')
 | 
						|
 | 
						|
    -- Assert buffer contents.
 | 
						|
    expect([[
 | 
						|
      hello
 | 
						|
      world!
 | 
						|
      good
 | 
						|
      morning
 | 
						|
      vimmers]])
 | 
						|
  end)
 | 
						|
end)
 |