util.async: Add test to ensure waiters throw an error outside async contexts

This commit is contained in:
Matthew Wild 2018-03-16 22:19:33 +00:00
parent b0211d2247
commit 2f1f98e1b5

View file

@ -84,6 +84,11 @@ describe("util.async", function()
end);
end);
describe("#waiter", function()
it("should error outside of async context", function ()
assert.has_error(function ()
async.waiter();
end);
end);
it("should work", function ()
local wait, done;