diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-10-16 09:58:10 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2024-10-17 12:52:45 +0100 |
commit | f0973d42272e9474c758c87697e3803e1796d17c (patch) | |
tree | 1bf4534462b7cdd8d92a699d77b298e0bc9af36b /test/functional/plugin/lsp_spec.lua | |
parent | 5bec7288a5b56f1ac38673e59e32f6be774558f3 (diff) | |
download | rneovim-f0973d42272e9474c758c87697e3803e1796d17c.tar.gz rneovim-f0973d42272e9474c758c87697e3803e1796d17c.tar.bz2 rneovim-f0973d42272e9474c758c87697e3803e1796d17c.zip |
feat(lsp.util): refactor symbols_to_items()
- Remove the trivial function vim.lsp.util._get_symbol_kind_name()
and its tests.
Diffstat (limited to 'test/functional/plugin/lsp_spec.lua')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index 0ab384a032..5309e1967c 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -3134,44 +3134,6 @@ describe('LSP', function() end) end) - describe('lsp.util._get_symbol_kind_name', function() - it('returns the name specified by protocol', function() - eq( - 'File', - exec_lua(function() - return vim.lsp.util._get_symbol_kind_name(1) - end) - ) - eq( - 'TypeParameter', - exec_lua(function() - return vim.lsp.util._get_symbol_kind_name(26) - end) - ) - end) - - it('returns the name not specified by protocol', function() - eq( - 'Unknown', - exec_lua(function() - return vim.lsp.util._get_symbol_kind_name(nil) - end) - ) - eq( - 'Unknown', - exec_lua(function() - return vim.lsp.util._get_symbol_kind_name(vim.NIL) - end) - ) - eq( - 'Unknown', - exec_lua(function() - return vim.lsp.util._get_symbol_kind_name(1000) - end) - ) - end) - end) - describe('lsp.util.jump_to_location', function() local target_bufnr --- @type integer |