diff options
author | dundargoc <gocdundar@gmail.com> | 2024-04-20 17:44:13 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-04-23 18:17:04 +0200 |
commit | 052498ed42780a76daea589d063cd8947a894673 (patch) | |
tree | b6c85416a4d7ced5eabb0a7a3866f5e0fee886cc /test/functional/plugin/lsp_spec.lua | |
parent | c5af5c0b9ab84c86f84e32210512923e7eb641ba (diff) | |
download | rneovim-052498ed42780a76daea589d063cd8947a894673.tar.gz rneovim-052498ed42780a76daea589d063cd8947a894673.tar.bz2 rneovim-052498ed42780a76daea589d063cd8947a894673.zip |
test: improve test conventions
Specifically, functions that are run in the context of the test runner
are put in module `test/testutil.lua` while the functions that are run
in the context of the test session are put in
`test/functional/testnvim.lua`.
Closes https://github.com/neovim/neovim/issues/27004.
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index d471aadf9c..8d3e141944 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -1,26 +1,28 @@ -local t = require('test.functional.testutil')() +local t = require('test.testutil') +local n = require('test.functional.testnvim')() + local t_lsp = require('test.functional.plugin.lsp.testutil') local assert_log = t.assert_log -local buf_lines = t.buf_lines -local clear = t.clear -local command = t.command +local buf_lines = n.buf_lines +local clear = n.clear +local command = n.command local dedent = t.dedent -local exec_lua = t.exec_lua +local exec_lua = n.exec_lua local eq = t.eq -local eval = t.eval +local eval = n.eval local matches = t.matches local pcall_err = t.pcall_err local pesc = vim.pesc -local insert = t.insert -local fn = t.fn +local insert = n.insert +local fn = n.fn local retry = t.retry -local stop = t.stop +local stop = n.stop local NIL = vim.NIL local read_file = t.read_file local write_file = t.write_file local is_ci = t.is_ci -local api = t.api +local api = n.api local is_os = t.is_os local skip = t.skip local mkdir = t.mkdir @@ -1481,7 +1483,7 @@ describe('LSP', function() end, on_handler = function(err, result, ctx) if ctx.method == 'start' then - t.command('normal! 1Go') + n.command('normal! 1Go') client.notify('finish') end eq(table.remove(expected_handlers), { err, result, ctx }, 'expected handler') @@ -2368,7 +2370,7 @@ describe('LSP', function() end) describe('lsp.util.rename', function() - local pathsep = t.get_pathsep() + local pathsep = n.get_pathsep() it('Can rename an existing file', function() local old = tmpname() @@ -2404,7 +2406,7 @@ describe('LSP', function() os.remove(old_dir) os.remove(new_dir) - t.mkdir_p(old_dir) + n.mkdir_p(old_dir) local file = 'file.txt' write_file(old_dir .. pathsep .. file, 'Test content') @@ -2440,7 +2442,7 @@ describe('LSP', function() local new = tmpname() os.remove(old) os.remove(new) - t.mkdir_p(old) + n.mkdir_p(old) local result = exec_lua( [[ |