comparison src/testdir/test_source.vim @ 19425:67fbe280a502 v8.2.0270

patch 8.2.0270: some code not covered by tests Commit: https://github.com/vim/vim/commit/bc2b71d44a0b90b6aeb3534a76912fccbe5577df Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 17 21:33:30 2020 +0100 patch 8.2.0270: some code not covered by tests Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5649)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Feb 2020 21:45:04 +0100
parents 02111977dd05
children 9cbe3a4f1492
comparison
equal deleted inserted replaced
19424:38c3f2b16596 19425:67fbe280a502
64 source Xfile.vim 64 source Xfile.vim
65 call assert_equal(g:val, 369) 65 call assert_equal(g:val, 369)
66 call delete('Xfile.vim') 66 call delete('Xfile.vim')
67 endfunc 67 endfunc
68 68
69 " Test for expanding <sfile> in a autocmd and for <slnum> and <sflnum>
70 func Test_source_autocmd_sfile()
71 let code =<< trim [CODE]
72 let g:SfileName = ''
73 augroup sfiletest
74 au!
75 autocmd User UserAutoCmd let g:Sfile = '<sfile>:t'
76 augroup END
77 doautocmd User UserAutoCmd
78 let g:Slnum = expand('<slnum>')
79 let g:Sflnum = expand('<sflnum>')
80 augroup! sfiletest
81 [CODE]
82 call writefile(code, 'Xscript.vim')
83 source Xscript.vim
84 call assert_equal('Xscript.vim', g:Sfile)
85 call assert_equal('7', g:Slnum)
86 call assert_equal('8', g:Sflnum)
87 call delete('Xscript.vim')
88 endfunc
89
69 " vim: shiftwidth=2 sts=2 expandtab 90 " vim: shiftwidth=2 sts=2 expandtab