comparison src/testdir/test_window_cmd.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 8f8a5a15d00a
comparison
equal deleted inserted replaced
19424:38c3f2b16596 19425:67fbe280a502
938 new 938 new
939 set modified 939 set modified
940 new 940 new
941 call assert_fails('only', 'E445:') 941 call assert_fails('only', 'E445:')
942 only! 942 only!
943 " Test for :only with a count
944 let wid = win_getid()
945 new
946 new
947 3only
948 call assert_equal(1, winnr('$'))
949 call assert_equal(wid, win_getid())
950 call assert_fails('close', 'E444:')
951 call assert_fails('%close', 'E16:')
943 endfunc 952 endfunc
944 953
945 " Test for errors with :wincmd 954 " Test for errors with :wincmd
946 func Test_wincmd_errors() 955 func Test_wincmd_errors()
947 call assert_fails('wincmd g', 'E474:') 956 call assert_fails('wincmd g', 'E474:')