aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/loader_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-01-03 03:05:22 -0800
committerGitHub <noreply@github.com>2024-01-03 03:05:22 -0800
commita064ed622927b4c5e30165abbe54db841359c71f (patch)
tree76973648e9ad684068457ff021b4d13281bfad84 /test/functional/lua/loader_spec.lua
parentee2127363463b89ba9d5071babcb9bd16c4db691 (diff)
parent04f2f864e270e772c6326cefdf24947f0130e492 (diff)
downloadrneovim-a064ed622927b4c5e30165abbe54db841359c71f.tar.gz
rneovim-a064ed622927b4c5e30165abbe54db841359c71f.tar.bz2
rneovim-a064ed622927b4c5e30165abbe54db841359c71f.zip
Merge #26398 lintlua for test/ dir
Diffstat (limited to 'test/functional/lua/loader_spec.lua')
-rw-r--r--test/functional/lua/loader_spec.lua26
1 files changed, 19 insertions, 7 deletions
diff --git a/test/functional/lua/loader_spec.lua b/test/functional/lua/loader_spec.lua
index 34c36b04ef..92dd2296cb 100644
--- a/test/functional/lua/loader_spec.lua
+++ b/test/functional/lua/loader_spec.lua
@@ -9,37 +9,49 @@ describe('vim.loader', function()
before_each(helpers.clear)
it('handles changing files (#23027)', function()
- exec_lua[[
+ exec_lua [[
vim.loader.enable()
]]
local tmp = helpers.tmpname()
command('edit ' .. tmp)
- eq(1, exec_lua([[
+ eq(
+ 1,
+ exec_lua(
+ [[
vim.api.nvim_buf_set_lines(0, 0, -1, true, {'_G.TEST=1'})
vim.cmd.write()
loadfile(...)()
return _G.TEST
- ]], tmp))
+ ]],
+ tmp
+ )
+ )
-- fs latency
helpers.sleep(10)
- eq(2, exec_lua([[
+ eq(
+ 2,
+ exec_lua(
+ [[
vim.api.nvim_buf_set_lines(0, 0, -1, true, {'_G.TEST=2'})
vim.cmd.write()
loadfile(...)()
return _G.TEST
- ]], tmp))
+ ]],
+ tmp
+ )
+ )
end)
it('handles % signs in modpath (#24491)', function()
- exec_lua[[
+ exec_lua [[
vim.loader.enable()
]]
- local tmp1, tmp2 = (function (t)
+ local tmp1, tmp2 = (function(t)
assert(os.remove(t))
assert(helpers.mkdir(t))
assert(helpers.mkdir(t .. '/%'))