blob: 055b260be1c3f475fd0f7c0566483740b1b3d065 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- " Test for expression comparators.
local t = require('test.functional.testutil')(after_each)
local clear, eq = t.clear, t.eq
local eval, command = t.eval, t.command
describe('comparators', function()
before_each(clear)
it('is working', function()
command('set isident+=#')
eq(1, eval('1 is#1'))
end)
end)
|