Lines Matching refs:equal
9 t.equal(callBound('Array.length'), Array.length, 'Array.length yields itself');
10 t.equal(callBound('%Array.length%'), Array.length, '%Array.length% yields itself');
13 t.equal(callBound('Array.prototype'), Array.prototype, 'Array.prototype yields itself');
14 t.equal(callBound('%Array.prototype%'), Array.prototype, '%Array.prototype% yields itself');
15 t.equal(callBound('Array.constructor'), Array.constructor, 'Array.constructor yields itself');
16 t.equal(callBound('%Array.constructor%'), Array.constructor, '%Array.constructor% yields itself');
19 t.equal(callBound('Date.parse'), Date.parse, 'Date.parse yields itself');
20 t.equal(callBound('%Date.parse%'), Date.parse, '%Date.parse% yields itself');
23 …t.equal(callBound('Error.prototype.message'), Error.prototype.message, 'Error.prototype.message yi…
24 …t.equal(callBound('%Error.prototype.message%'), Error.prototype.message, '%Error.prototype.message…
29 …t.equal(callBound('Object.prototype.toString')(true), Object.prototype.toString.call(true), 'call-…
30 …t.equal(callBound('%Object.prototype.toString%')(true), Object.prototype.toString.call(true), 'cal…
50 st.equal(callBound('WeakRef', true), undefined, 'allowMissing arg avoids exception');