comparison src/testdir/test_bufline.vim @ 29875:cb4d95b545f1 v9.0.0276

patch 9.0.0276: 'buftype' values not sufficiently tested Commit: https://github.com/vim/vim/commit/93f72cc119c796f1ccb75468ef9e446cbfb41e9b Author: zeertzjq <zeertzjq@outlook.com> Date: Fri Aug 26 15:34:52 2022 +0100 patch 9.0.0276: 'buftype' values not sufficiently tested Problem: 'buftype' values not sufficiently tested. Solution: Add and extend tests with 'buftype' values. (closes https://github.com/vim/vim/issues/10988)
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Aug 2022 16:45:03 +0200
parents 8207581dd068
children ba5ca7c7d44c
comparison
equal deleted inserted replaced
29874:fd1e8bf02d4b 29875:cb4d95b545f1
253 253
254 exe "bwipe! " .. bufnr 254 exe "bwipe! " .. bufnr
255 bwipe! 255 bwipe!
256 endfunc 256 endfunc
257 257
258 func Test_setbufline_startup_nofile()
259 let before =<< trim [CODE]
260 set shortmess+=F
261 file Xresult
262 set buftype=nofile
263 call setbufline('', 1, 'success')
264 [CODE]
265 let after =<< trim [CODE]
266 set buftype=
267 write
268 quit
269 [CODE]
270
271 if !RunVim(before, after, '--clean')
272 return
273 endif
274 call assert_equal(['success'], readfile('Xresult'))
275 call delete('Xresult')
276 endfunc
277
258 " vim: shiftwidth=2 sts=2 expandtab 278 " vim: shiftwidth=2 sts=2 expandtab