Mercurial > vim
changeset 14754:d4db9adc8642 v8.1.0389
patch 8.1.0389: :behave command is not tested
commit https://github.com/vim/vim/commit/da1f71d75f0bf5d5ef876a09aa08fb19f6f24b3b
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 14 20:10:32 2018 +0200
patch 8.1.0389: :behave command is not tested
Problem: :behave command is not tested.
Solution: Add a test. (Dominique Pelle, closes https://github.com/vim/vim/issues/3429)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 14 Sep 2018 20:15:05 +0200 |
parents | cb742b188eea |
children | 107d7668e164 |
files | src/Make_all.mak src/testdir/test_alot.vim src/testdir/test_behave.vim src/version.c |
diffstat | 4 files changed, 33 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Make_all.mak +++ b/src/Make_all.mak @@ -14,6 +14,7 @@ NEW_TESTS = \ test_autoload \ test_backspace_opt \ test_backup \ + test_behave \ test_blockedit \ test_breakindent \ test_bufline \
--- a/src/testdir/test_alot.vim +++ b/src/testdir/test_alot.vim @@ -3,6 +3,7 @@ source test_assign.vim source test_backup.vim +source test_behave.vim source test_bufline.vim source test_cd.vim source test_changedtick.vim
new file mode 100644 --- /dev/null +++ b/src/testdir/test_behave.vim @@ -0,0 +1,29 @@ +" Test the :behave command + +func Test_behave() + behave mswin + call assert_equal('mouse,key', &selectmode) + call assert_equal('popup', &mousemodel) + call assert_equal('startsel,stopsel', &keymodel) + call assert_equal('exclusive', &selection) + + behave xterm + call assert_equal('', &selectmode) + call assert_equal('extend', &mousemodel) + call assert_equal('', &keymodel) + call assert_equal('inclusive', &selection) + + set selection& + set mousemodel& + set keymodel& + set selection& +endfunc + +func Test_behave_completion() + call feedkeys(":behave \<C-A>\<C-B>\"\<CR>", 'tx') + call assert_equal('"behave mswin xterm', @:) +endfunc + +func Test_behave_error() + call assert_fails('behave x', 'E475:') +endfunc