Compare commits

...

2 Commits

Author SHA1 Message Date
cfc3f08d53 remove a testcase for specs 2025-07-02 21:13:30 -04:00
1c2f49fcfa unpin dep internally 2025-07-02 21:13:08 -04:00
2 changed files with 1 additions and 17 deletions

View File

@ -100,8 +100,7 @@ return function(opts)
local root = packager:new({
"squibid/dep",
url = "https://git.squi.bid/squibid/dep.git",
branch = "lazy",
pin = true
branch = "lazy"
})
if not root then
logger:log("error", "couldn't register root package")

View File

@ -51,20 +51,5 @@ describe("package specification", function()
}
}
)
assert.same(
dep_spec_man.check({
"user/package",
deps = {
{ { "user/dependency" } }
}
}, true),
{
"user/package",
deps = {
"user/dependency"
}
}
)
end)
end)