util.ringbuffer: Prevent creation of zero-size buffer

This commit is contained in:
Kim Alvefur 2020-05-29 18:11:42 +02:00
parent 838f8ebd5b
commit 0bb1474ce6
2 changed files with 6 additions and 0 deletions

View file

@ -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();