mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Add some additional tests to cover callback return values
This commit is contained in:
parent
082761bde3
commit
843104372c
1 changed files with 24 additions and 0 deletions
|
@ -248,6 +248,30 @@ describe("util.promise", function ()
|
|||
assert.spy(cb3).was_called(1);
|
||||
assert.spy(cb3).was_called_with("goodbye");
|
||||
end);
|
||||
|
||||
it("ordinary values", function ()
|
||||
local p = promise.resolve()
|
||||
local cb = spy.new(function ()
|
||||
return "hello"
|
||||
end);
|
||||
local cb2 = spy.new(function () end);
|
||||
p:next(cb):next(cb2);
|
||||
assert.spy(cb).was_called(1);
|
||||
assert.spy(cb2).was_called(1);
|
||||
assert.spy(cb2).was_called_with("hello");
|
||||
end);
|
||||
|
||||
it("nil", function ()
|
||||
local p = promise.resolve()
|
||||
local cb = spy.new(function ()
|
||||
return
|
||||
end);
|
||||
local cb2 = spy.new(function () end);
|
||||
p:next(cb):next(cb2);
|
||||
assert.spy(cb).was_called(1);
|
||||
assert.spy(cb2).was_called(1);
|
||||
assert.spy(cb2).was_called_with(nil);
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("race()", function ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue