Mercurial > vim
view src/testdir/test_exit.vim @ 13779:dae7df489b22
Added tag v8.0.1761 for changeset 5f6c61a71c029381dcc3c6775063ea19bf0c721b
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 24 Apr 2018 21:00:08 +0200 |
parents | 94e638936d3e |
children | 9c90cf08cfa8 |
line wrap: on
line source
" Tests for exiting Vim. source shared.vim func Test_exiting() let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'quit', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'help', \ 'wincmd w', \ 'quit', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'split', \ 'new', \ 'qall', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout", "a")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'augroup nasty', \ ' au ExitPre * split', \ 'augroup END', \ 'quit', \ 'augroup nasty', \ ' au! ExitPre', \ 'augroup END', \ 'quit', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre', 'QuitPre', 'ExitPre'], \ readfile('Xtestout')) endif call delete('Xtestout') endfunc