forked from aniani/vim
Problem: Various inconsistencies in test files.
Solution: Add modelines where they were missing. Use Check commands instead
of silently skipping over tests. Adjust indents and comments.
(Ken Takata, closes #6695)
14 lines
234 B
VimL
14 lines
234 B
VimL
" 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
|