aboutsummaryrefslogtreecommitdiffstats
path: root/test/lspconfig_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/lspconfig_spec.lua')
-rw-r--r--test/lspconfig_spec.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/lspconfig_spec.lua b/test/lspconfig_spec.lua
index 36eca3bc..31d03f1d 100644
--- a/test/lspconfig_spec.lua
+++ b/test/lspconfig_spec.lua
@@ -24,36 +24,6 @@ describe('lspconfig', function()
eq('/usr/local/test/\\[sq brackets\\] fname\\?\\*.lua', res)
end)
end)
- describe('exists', function()
- it('is present directory', function()
- local lspconfig = require 'lspconfig'
-
- local cwd = vim.fn.getcwd()
- eq(true, lspconfig.util.path.exists(cwd) ~= false)
- end)
-
- it('is not present directory', function()
- local lspconfig = require 'lspconfig'
- local not_exist_dir = vim.fn.getcwd() .. '/not/exists'
- eq(true, lspconfig.util.path.exists(not_exist_dir) == false)
- end)
-
- it('is present file', function()
- local lspconfig = require 'lspconfig'
- -- change the working directory to test directory
- vim.api.nvim_command 'cd ./test/test_dir/'
- local file = vim.fn.getcwd() .. '/root_marker.txt'
- eq(true, lspconfig.util.path.exists(file) ~= false)
- end)
-
- it('is not present file', function()
- local lspconfig = require 'lspconfig'
- -- change the working directory to test directory
- vim.api.nvim_command 'cd ./test/test_dir/'
- local file = vim.fn.getcwd() .. '/not_exists.txt'
- assert.is_false(lspconfig.util.path.exists(file))
- end)
- end)
describe('is_dir', function()
it('is directory', function()