summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_behave.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-14 20:10:32 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-14 20:10:32 +0200
commitda1f71d75f0bf5d5ef876a09aa08fb19f6f24b3b (patch)
tree5971dbd52886a37739dd9101ab6a5ad1caf356f6 /src/testdir/test_behave.vim
parentbf1c1b85136bbbe55a50c9cd01ed064d8df75697 (diff)
patch 8.1.0389: :behave command is not testedv8.1.0389
Problem: :behave command is not tested. Solution: Add a test. (Dominique Pelle, closes #3429)
Diffstat (limited to 'src/testdir/test_behave.vim')
-rw-r--r--src/testdir/test_behave.vim29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/testdir/test_behave.vim b/src/testdir/test_behave.vim
new file mode 100644
index 0000000000..c26bfe7ce3
--- /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