mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.ringbuffer: Prevent creation of zero-size buffer
This commit is contained in:
parent
838f8ebd5b
commit
0bb1474ce6
2 changed files with 6 additions and 0 deletions
|
@ -7,6 +7,11 @@ describe("util.ringbuffer", function ()
|
|||
it("can be created", function ()
|
||||
assert.truthy(rb.new());
|
||||
end);
|
||||
it("won't create an empty buffer", function ()
|
||||
assert.has_error(function ()
|
||||
rb.new(0);
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
describe(":write", function ()
|
||||
local b = rb.new();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue