mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.async: Make parameters to async.runner() optional
This commit is contained in:
parent
5303e72605
commit
a8f9a2757f
2 changed files with 27 additions and 3 deletions
|
@ -94,6 +94,26 @@ describe("util.async", function()
|
|||
assert.equal(last_item, values[#values]);
|
||||
end);
|
||||
|
||||
it("should work with no parameters", function ()
|
||||
local item = "fail";
|
||||
local r = async.runner();
|
||||
local f = spy.new(function () item = "success"; end);
|
||||
r:run(f);
|
||||
assert.spy(f).was.called();
|
||||
assert.equal(item, "success");
|
||||
end);
|
||||
|
||||
it("supports a default error handler", function ()
|
||||
local item = "fail";
|
||||
local r = async.runner();
|
||||
local f = spy.new(function () error("test error"); end);
|
||||
assert.error_matches(function ()
|
||||
r:run(f);
|
||||
end, "test error");
|
||||
assert.spy(f).was.called();
|
||||
assert.equal(item, "fail");
|
||||
end);
|
||||
|
||||
describe("#errors", function ()
|
||||
describe("should notify", function ()
|
||||
local last_processed_item, last_error;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue