util.smqueue: Improve tests

Result of mutation testing. One mutant remaining.
This commit is contained in:
Kim Alvefur 2022-10-19 14:34:41 +02:00
parent 5bf6e7f501
commit 98da2af369

View file

@ -5,6 +5,9 @@ describe("util.smqueue", function()
describe("#new()", function()
it("should work", function()
assert.has_error(function () smqueue.new(-1) end);
assert.has_error(function () smqueue.new(0) end);
assert.not_has_error(function () smqueue.new(1) end);
local q = smqueue.new(10);
assert.truthy(q);
end)