Summary: Right now we are using a custom test runner. This move the suite over to busted, this will make things much more maintainable going forward. The two main reasons for moving are. 1) The custom runner as some bugs, when running assertions we are not getting the correct results. 2) All of the busted mocking features. We can use spy and mock, this will allow us to remove the nvim_mock. This file is not amazing and confuses the lsp often. Test Plan: CI
11 lines
414 B
Lua
11 lines
414 B
Lua
local utils = require "ivy.utils"
|
|
|
|
it("will escape a dollar in the file name", function()
|
|
local result = utils.escape_file_name "/path/to/$file/$name.lua"
|
|
assert.is_same(result, "/path/to/\\$file/\\$name.lua")
|
|
end)
|
|
|
|
it("will escape a brackets in the file name", function()
|
|
local result = utils.escape_file_name "/path/to/[file]/[name].lua"
|
|
assert.is_same(result, "/path/to/\\[file\\]/\\[name\\].lua")
|
|
end)
|