util.async: tests: ensure async.once() propagates errors

This commit is contained in:
Matthew Wild 2018-03-22 11:56:03 +00:00
parent 38ac92b0df
commit cdff82828c

View file

@ -602,5 +602,13 @@ describe("util.async", function()
async.once(f);
assert.spy(f).was.called();
end);
it("should propagate errors", function ()
local function should_error()
async.once(function ()
error("hello world");
end);
end;
assert.error_matches(should_error, "hello world");
end);
end);
end);