neovim/test/functional/legacy/lispwords_spec.lua
ZyX ff470bb853 functests: Check logs in lua code
It is otherwise impossible to determine which test failed sanitizer/valgrind
check. test/functional/helpers.lua module return was changed so that tests which
do not provide after_each function to get new check will automatically fail.
2016-06-10 21:50:49 +03:00

26 lines
728 B
Lua

local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local eq = helpers.eq
local eval = helpers.eval
local execute = helpers.execute
local source = helpers.source
describe('lispwords', function()
before_each(clear)
it('should be set global-local',function()
source([[
setglobal lispwords=foo,bar,baz
setlocal lispwords-=foo
setlocal lispwords+=quux]])
eq('foo,bar,baz', eval('&g:lispwords'))
eq('bar,baz,quux', eval('&l:lispwords'))
eq('bar,baz,quux', eval('&lispwords'))
execute('setlocal lispwords<')
eq('foo,bar,baz', eval('&g:lispwords'))
eq('foo,bar,baz', eval('&l:lispwords'))
eq('foo,bar,baz', eval('&lispwords'))
end)
end)