mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.async: Remove async.once(), can now be replaced by runner():run(func)
This commit is contained in:
parent
59e03259d1
commit
072c04815b
2 changed files with 0 additions and 33 deletions
|
@ -613,23 +613,4 @@ describe("util.async", function()
|
|||
assert.spy(r.watchers.error).was_not.called();
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#once()", function ()
|
||||
it("should work", function ()
|
||||
local f = spy.new(function ()
|
||||
assert.truthy(async.ready());
|
||||
end);
|
||||
async.once(f);
|
||||
assert.spy(f).was.called();
|
||||
assert.spy(f).was.called_with();
|
||||
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue