view src/testdir/test_comparators.vim @ 14627:335f32c55ac3 v8.1.0327

patch 8.1.0327: the "g CTRL-G" command isn't tested much commit https://github.com/vim/vim/commit/0529583ff144e2cb8fb57fe61a86997310bd7727 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 24 22:07:58 2018 +0200 patch 8.1.0327: the "g CTRL-G" command isn't tested much Problem: The "g CTRL-G" command isn't tested much. Solution: Add more tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/3369)
author Christian Brabandt <cb@256bit.org>
date Fri, 24 Aug 2018 22:15:05 +0200
parents 140d51d5b5c3
children 08940efa6b4e
line wrap: on
line source

function Test_Comparators()
  try
    let oldisident=&isident
    set isident+=#
    call assert_equal(1, 1 is#1)
  finally
    let &isident=oldisident
  endtry
endfunction