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