aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/lispwords_spec.lua
diff options
context:
space:
mode:
authorwatiko <service@mail.watiko.net>2016-02-22 22:21:37 +0900
committerwatiko <service@mail.watiko.net>2016-02-22 22:47:18 +0900
commitf0add77de5b9f091cf122224d30ec4dc0188d522 (patch)
tree03fceebede403709d9898fe77d3c0e4913dff415 /test/functional/legacy/lispwords_spec.lua
parente71de26abade27b1c7b7ff0cf45d393d71b9a028 (diff)
downloadrneovim-f0add77de5b9f091cf122224d30ec4dc0188d522.tar.gz
rneovim-f0add77de5b9f091cf122224d30ec4dc0188d522.tar.bz2
rneovim-f0add77de5b9f091cf122224d30ec4dc0188d522.zip
vim-patch:7.4.952
Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'. https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Diffstat (limited to 'test/functional/legacy/lispwords_spec.lua')
-rw-r--r--test/functional/legacy/lispwords_spec.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/functional/legacy/lispwords_spec.lua b/test/functional/legacy/lispwords_spec.lua
new file mode 100644
index 0000000000..48df4de55e
--- /dev/null
+++ b/test/functional/legacy/lispwords_spec.lua
@@ -0,0 +1,25 @@
+local helpers = require('test.functional.helpers')
+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)