blob: 582ec6d6dc3f9b4026371ee0281c94f8656d0eba (
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')()
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)
|