view src/testdir/test_comparators.vim @ 22252:52f8d1248dd9 v8.2.1675

patch 8.2.1675: MinGW: testdir makefile deletes non-existing file Commit: https://github.com/vim/vim/commit/05c1acd5e1564ea4dbc7d4be26908af6909f43f6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 13 21:01:22 2020 +0200 patch 8.2.1675: MinGW: testdir makefile deletes non-existing file Problem: MinGW: testdir makefile deletes non-existing file. Solution: Use another way to delete the output file if it already exists. (Michael Soyka)
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Sep 2020 21:15:07 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" Test for comparators

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

" vim: shiftwidth=2 sts=2 expandtab