diff options
author | sumneko <sumneko@hotmail.com> | 2022-01-23 04:37:55 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2022-01-23 04:37:55 +0800 |
commit | 6c97dc8eaae16214a2127f84deca30f2ca6206a3 (patch) | |
tree | 7978bfe6dfd5ffc03b3e3228f1e57f43eb16deec /test/completion/common.lua | |
parent | a13a30f193b54f32138306463dd8e13d208fb45c (diff) | |
download | lua-language-server-6c97dc8eaae16214a2127f84deca30f2ca6206a3.zip |
fix #920
Diffstat (limited to 'test/completion/common.lua')
-rw-r--r-- | test/completion/common.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/completion/common.lua b/test/completion/common.lua index b03d55ca..6affbc8f 100644 --- a/test/completion/common.lua +++ b/test/completion/common.lua @@ -3060,3 +3060,10 @@ local t t:testFunc2(<??>) ]] (EXISTS) + +TEST [[ +require '<??>' +]] +(function (results) + assert(#results == 11) +end) |