view src/testdir/test_behave.vim @ 22049:2b04c5bf4dc3 v8.2.1574

patch 8.2.1574: Vim9: glob() doesnot take "true" as argument Commit: https://github.com/vim/vim/commit/5892ea151197c8a6363c7ce2322d84277b97353e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 2 21:53:11 2020 +0200 patch 8.2.1574: Vim9: glob() doesnot take "true" as argument Problem: Vim9: glob() doesnot take "true" as argument. Solution: Use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6821)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Sep 2020 22:00:05 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" 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

" vim: shiftwidth=2 sts=2 expandtab