aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/vim_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-09-23 15:59:37 +0800
committerGitHub <noreply@github.com>2023-09-23 15:59:37 +0800
commit5331d5772ffbbdb3635d0a4b41306817097e86de (patch)
tree259eea5584b6e0aa2452da474db434eda521cc08 /test/functional/lua/vim_spec.lua
parentc0a29931e29bbb40650df01918826cdb64e8fc32 (diff)
downloadrneovim-5331d5772ffbbdb3635d0a4b41306817097e86de.tar.gz
rneovim-5331d5772ffbbdb3635d0a4b41306817097e86de.tar.bz2
rneovim-5331d5772ffbbdb3635d0a4b41306817097e86de.zip
fix(lua): show error message when failing to set variable (#25321)
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r--test/functional/lua/vim_spec.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua
index 1dfb9a5e10..cf80478b08 100644
--- a/test/functional/lua/vim_spec.lua
+++ b/test/functional/lua/vim_spec.lua
@@ -1491,6 +1491,8 @@ describe('lua stdlib', function()
eq(NIL, funcs.luaeval "vim.v.null")
matches([[attempt to index .* nil value]],
pcall_err(exec_lua, 'return vim.v[0].progpath'))
+ eq('Key is read-only: count', pcall_err(exec_lua, 'vim.v.count = 42'))
+ eq('Dictionary is locked', pcall_err(exec_lua, 'vim.v.nosuchvar = 42'))
end)
it('vim.bo', function()