From f9e99d81a4187a0d017d5db3aaa5c4bbfe3ecc54 Mon Sep 17 00:00:00 2001 From: w0rp Date: Mon, 17 Sep 2018 11:16:46 +0100 Subject: #1794 - Handle LSP documentation content as a Dictionary --- test/completion/test_lsp_completion_parsing.vader | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'test/completion') diff --git a/test/completion/test_lsp_completion_parsing.vader b/test/completion/test_lsp_completion_parsing.vader index d5a45b54..71e53ab6 100644 --- a/test/completion/test_lsp_completion_parsing.vader +++ b/test/completion/test_lsp_completion_parsing.vader @@ -447,3 +447,27 @@ Execute(Should handle missing keys): \ ] \ } \ }) + +Execute(Should handle documentation in the markdown format): + AssertEqual + \ [ + \ {'word': 'migrations', 'menu': 'xxx', 'info': 'Markdown documentation', 'kind': 'f', 'icase': 1}, + \ ], + \ ale#completion#ParseLSPCompletions({ + \ 'jsonrpc': '2.0', + \ 'id': 6, + \ 'result': { + \ 'isIncomplete': v:false, + \ 'items': [ + \ { + \ 'label': 'migrations', + \ 'kind': 3, + \ 'detail': 'xxx', + \ 'documentation': { + \ 'kind': 'markdown', + \ 'value': 'Markdown documentation', + \ }, + \ }, + \ ], + \ }, + \ }) -- cgit v1.2.3