mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
15 lines
342 B
Lua
15 lines
342 B
Lua
|
-- " 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)
|