view src/testdir/test_writefile.in @ 7901:46e8a350947d

commit https://github.com/vim/vim/commit/7c764f7bbf71a7a49baae07641efd2ead69e4d08 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 2 23:33:43 2016 +0100 Make the python script executable.
author Christian Brabandt <cb@256bit.org>
date Tue, 02 Feb 2016 23:45:05 +0100
parents 26bb1a6abe25
children
line wrap: on
line source

Tests for writefile()

STARTTEST
:source small.vim
:%delete _
:let f = tempname()
:call writefile(["over","written"], f, "b")
:call writefile(["hello","world"], f, "b")
:call writefile(["!", "good"], f, "a")
:call writefile(["morning"], f, "ab")
:call writefile(["", "vimmers"], f, "ab")
:bwipeout!
:$put =readfile(f)
:1 delete _
:w! test.out
:call delete(f)
:qa!
ENDTEST