neovim/test/functional/legacy/writefile_spec.lua
dundargoc 052498ed42 test: improve test conventions
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.
2024-04-23 18:17:04 +02:00

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)