mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
fix(spec): allow a spec module to be on the rtp and not only in config
This commit is contained in:
parent
963e6f72a7
commit
51c23b661e
5 changed files with 131 additions and 19 deletions
37
tests/helpers.lua
Normal file
37
tests/helpers.lua
Normal file
|
@ -0,0 +1,37 @@
|
|||
local Util = require("lazy.util")
|
||||
|
||||
local M = {}
|
||||
|
||||
M.fs_root = vim.fn.fnamemodify("./.tests/fs", ":p")
|
||||
|
||||
function M.path(path)
|
||||
return Util.norm(M.fs_root .. "/" .. path)
|
||||
end
|
||||
|
||||
---@param files string[]
|
||||
function M.fs_create(files)
|
||||
---@type string[]
|
||||
local ret = {}
|
||||
|
||||
for _, file in ipairs(files) do
|
||||
ret[#ret + 1] = Util.norm(M.fs_root .. "/" .. file)
|
||||
local parent = vim.fn.fnamemodify(ret[#ret], ":h:p")
|
||||
vim.fn.mkdir(parent, "p")
|
||||
Util.write_file(ret[#ret], "")
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
function M.fs_rm(dir)
|
||||
dir = Util.norm(M.fs_root .. dir)
|
||||
Util.walk(dir, function(path, _, type)
|
||||
if type == "directory" then
|
||||
vim.loop.fs_rmdir(path)
|
||||
else
|
||||
vim.loop.fs_unlink(path)
|
||||
end
|
||||
end)
|
||||
vim.loop.fs_rmdir(dir)
|
||||
end
|
||||
|
||||
return M
|
Loading…
Add table
Add a link
Reference in a new issue