view src/testdir/test_assign.vim @ 10829:8233f8f3f7ae v8.0.0304

patch 8.0.0304: assign test fails in the GUI commit https://github.com/vim/vim/commit/1fb0d49803b4f57025ed6a43b1f5b9eb91524645 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 4 21:50:19 2017 +0100 patch 8.0.0304: assign test fails in the GUI Problem: Assign test fails in the GUI. Solution: Skip the test for setting t_k1.
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Feb 2017 22:00:04 +0100
parents 4dea7c96fc82
children 126405b39964
line wrap: on
line source

" Test for assignment

func Test_no_type_checking()
  let v = 1
  let v = [1,2,3]
  let v = {'a': 1, 'b': 2}
  let v = 3.4
  let v = 'hello'
endfunc

func Test_let_termcap()
  " Terminal code
  let old_t_te = &t_te
  let &t_te = "\<Esc>[yes;"
  call assert_match('t_te.*^[[yes;', execute("set termcap"))
  let &t_te = old_t_te

  if !has('gui_running')
    " Key code
    let old_t_k1 = &t_k1
    let &t_k1 = "that"
    call assert_match('t_k1.*that', execute("set termcap"))
    let &t_k1 = old_t_k1
  endif

  call assert_fails('let x = &t_xx', 'E15')
  let &t_xx = "yes"
  call assert_equal("yes", &t_xx)
  let &t_xx = ""
  call assert_fails('let x = &t_xx', 'E15')
endfunc