| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 | -- 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)
 |