summaryrefslogtreecommitdiff
path: root/src/testdir/test_writefile.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-02 15:32:13 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-02 15:32:13 +0100
commitea3db914c0fa35797ad73f6d5bb3a4288d690065 (patch)
treed733386620b647bdd10756f7955228ea9ce3ed4c /src/testdir/test_writefile.vim
parentd98c0b63abd7b0e61a383669474abe96044615af (diff)
downloadvim-git-ea3db914c0fa35797ad73f6d5bb3a4288d690065.tar.gz
patch 8.2.0197: some Ex commands not sufficiently testedv8.2.0197
Problem: Some Ex commands not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5565)
Diffstat (limited to 'src/testdir/test_writefile.vim')
-rw-r--r--src/testdir/test_writefile.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/test_writefile.vim b/src/testdir/test_writefile.vim
index db17e6f9b..98a06eb01 100644
--- a/src/testdir/test_writefile.vim
+++ b/src/testdir/test_writefile.vim
@@ -1,5 +1,7 @@
" Tests for the writefile() function and some :write commands.
+source check.vim
+
func Test_writefile()
let f = tempname()
call writefile(["over","written"], f, "b")
@@ -183,9 +185,7 @@ endfunc
" Test for ':w !<cmd>' to pipe lines from the current buffer to an external
" command.
func Test_write_pipe_to_cmd()
- if !has('unix')
- return
- endif
+ CheckUnix
new
call setline(1, ['L1', 'L2', 'L3', 'L4'])
2,3w !cat > Xfile