Lines Matching refs:deepEqual

24 	t.deepEqual(func(), [undefined, undefined, undefined], 'unbound func with too few args');
25 t.deepEqual(func(1, 2), [undefined, 1, 2], 'unbound func with right args');
26 t.deepEqual(func(1, 2, 3), [undefined, 1, 2], 'unbound func with too many args');
30 t.deepEqual(bound(), [undefined, undefined, undefined], 'bound func with too few args');
31 t.deepEqual(bound(1, 2), [1, 2, undefined], 'bound func with right args');
32 t.deepEqual(bound(1, 2, 3), [1, 2, 3], 'bound func with too many args');
36 …t.deepEqual(boundR(), [sentinel, undefined, undefined], 'bound func with receiver, with too few ar…
37 t.deepEqual(boundR(1, 2), [sentinel, 1, 2], 'bound func with receiver, with right args');
38 t.deepEqual(boundR(1, 2, 3), [sentinel, 1, 2], 'bound func with receiver, with too many args');
42 …t.deepEqual(boundArg(), [sentinel, 1, undefined], 'bound func with receiver and arg, with too few …
43 t.deepEqual(boundArg(2), [sentinel, 1, 2], 'bound func with receiver and arg, with right arg');
44 …t.deepEqual(boundArg(2, 3), [sentinel, 1, 2], 'bound func with receiver and arg, with too many arg…
48 st.deepEqual(aBound(sentinel), [sentinel, undefined, undefined], 'apply-bound func with no args');
49 …st.deepEqual(aBound(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few ar…
50 st.deepEqual(aBound(sentinel, [1, 2], 4), [sentinel, 1, 2], 'apply-bound func with right args');
53 …st.deepEqual(aBoundArg(sentinel, [1, 2, 3], 4), [sentinel, 1, 2], 'apply-bound func with too many …
54 …st.deepEqual(aBoundArg(sentinel, [1, 2], 4), [sentinel, 1, 2], 'apply-bound func with right args');
55 …st.deepEqual(aBoundArg(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few…
58 …st.deepEqual(aBoundR([1, 2, 3], 4), [sentinel, 1, 2], 'apply-bound func with receiver and too many…
59 …st.deepEqual(aBoundR([1, 2], 4), [sentinel, 1, 2], 'apply-bound func with receiver and right args'…
60 …st.deepEqual(aBoundR([1], 4), [sentinel, 1, undefined], 'apply-bound func with receiver and too fe…