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