neovim/test/functional/legacy/writefile_spec.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
789 B
Lua
Raw Normal View History

-- 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)