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