mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.smqueue: Improve tests
Result of mutation testing. One mutant remaining.
This commit is contained in:
parent
5bf6e7f501
commit
98da2af369
1 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue