mirror of
https://github.com/neovim/neovim.git
synced 2024-12-31 17:13:26 -07:00
15 lines
315 B
Lua
15 lines
315 B
Lua
-- " 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)
|