view src/testdir/test_writefile.in @ 8599:ddb04cbe1e0c v7.4.1589

commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 17 23:13:28 2016 +0100 patch 7.4.1589 Problem: Combining dict and args with partial doesn't always work. Solution: Use the arguments from the partial.
author Christian Brabandt <cb@256bit.org>
date Thu, 17 Mar 2016 23:15: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