diff src/testdir/test_comparators.vim @ 11651:140d51d5b5c3 v8.0.0708

patch 8.0.0708: some tests are old style commit https://github.com/vim/vim/commit/292eff0c5aacb8531d65509679b6c29eae8dc22a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 11 21:46:28 2017 +0200 patch 8.0.0708: some tests are old style Problem: Some tests are old style. Solution: Change a few tests from old style to new style. (pschuh, closes #1813)
author Christian Brabandt <cb@256bit.org>
date Tue, 11 Jul 2017 22:00:03 +0200
parents
children 08940efa6b4e
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/src/testdir/test_comparators.vim
@@ -0,0 +1,9 @@
+function Test_Comparators()
+  try
+    let oldisident=&isident
+    set isident+=#
+    call assert_equal(1, 1 is#1)
+  finally
+    let &isident=oldisident
+  endtry
+endfunction