neovim/test/functional/legacy/comparators_spec.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
351 B
Lua
Raw Normal View History

-- " Test for expression comparators.
local t = require('test.testutil')
local n = require('test.functional.testnvim')()
local clear, eq = n.clear, t.eq
local eval, command = n.eval, n.command
describe('comparators', function()
before_each(clear)
it('is working', function()
command('set isident+=#')
eq(1, eval('1 is#1'))
end)
end)