fix(picker.db): remove tests

This commit is contained in:
Folke Lemaitre 2025-01-17 00:21:10 +01:00
parent b7ab888dd0
commit 71f69e5e57
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -155,15 +155,4 @@ function M:get(key)
return ret
end
local db = M.new("test.sqlite3", "number")
db:set("foo", 123)
db:begin()
p(function()
-- db:set("foo", 123)
-- db:set("bar", 456)
-- db:set("baz", 789)
db:get("foo")
-- db:set("foo", 123)
end, { count = 100 })
return M