spread.js
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var Q = require('../kew')
exports.testSpreadStatic = function (test) {
Q.spread([Q.resolve('a'), 'b'], function (a, b) {
test.equal('a', a)
test.equal('b', b)
test.done()
})
}
exports.testSpreadMethod = function (test) {
Q.resolve(true)
.then(function () {
return ['a', 'b']
})
.spread(function (a, b) {
test.equal('a', a)
test.equal('b', b)
test.done()
})
}
exports.testSpreadBoundMethod = function (test) {
Q.resolve(true)
.then(function () {
return [Q.resolve('a'), 'b']
})
.spreadBound(function (c, a, b) {
test.equal('scope', this.scope)
test.equal('c', c)
test.equal('a', a)
test.equal('b', b)
test.done()
}, {scope: 'scope'}, 'c')
}
exports.testAllSynchronization1 = function (test) {
var order = []
Q.resolve(true)
.then(function () {
var promiseA = Q.fcall(function () {
order.push('a')
})
var promiseB = Q.fcall(function () {
order.push('b')
})
test.deepEqual([], order)
var promiseAB = Q.all([promiseA, promiseB])
test.deepEqual([], order)
return [promiseA, promiseB]
})
.then(function (results) {
test.deepEqual(['a', 'b'], order)
test.done()
})
}