comparison src/testdir/test_filechanged.vim @ 20861:1725bb56178a v8.2.0982

patch 8.2.0982: insufficient testing for reading/writing files Commit: https://github.com/vim/vim/commit/b340baed9f7fc1c19a0742e2214d54982190c15e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 15 19:51:56 2020 +0200 patch 8.2.0982: insufficient testing for reading/writing files Problem: Insufficient testing for reading/writing files. Solution: Add more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6257) Add "ui_delay" to test_override() and use it for the CTRL-O test.
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Jun 2020 20:00:05 +0200
parents 2f4be7ca1b1b
children 6ca2d8f4cd32
comparison
equal deleted inserted replaced
20860:2665521ed2cd 20861:1725bb56178a
141 checktime Xchanged_d 141 checktime Xchanged_d
142 call assert_equal('', v:warningmsg) 142 call assert_equal('', v:warningmsg)
143 call assert_equal(1, line('$')) 143 call assert_equal(1, line('$'))
144 call assert_equal('new line', getline(1)) 144 call assert_equal('new line', getline(1))
145 145
146 " File created after starting to edit it
147 call delete('Xchanged_d')
148 new Xchanged_d
149 call writefile(['one'], 'Xchanged_d')
150 call feedkeys('L', 'L')
151 checktime Xchanged_d
152 call assert_equal(['one'], getline(1, '$'))
153 close!
154
146 bwipe! 155 bwipe!
147 call delete('Xchanged_d') 156 call delete('Xchanged_d')
148 endfunc 157 endfunc
149 158
150 " Test for editing a new buffer from a FileChangedShell autocmd 159 " Test for editing a new buffer from a FileChangedShell autocmd