Home | History | Annotate | Download | only in js

Lines Matching full:shouldbe

56 shouldBe("testThis.call(null)", "null");
57 shouldBe("testThis.call(1)", "1");
58 shouldBe("testThis.call(true)", "true");
59 shouldBe("testThis.call(false)", "false");
60 shouldBe("testThis.call(undefined)", "undefined");
63 shouldBe("testThis.call('a string')", "'a string'");
64 shouldBe("testThisDotAccess.call('a string')", "'a string'.length");
70 shouldBe("testThisBracketAccess.call('a string', 'length')", "'a string'.length");
80 shouldBe("testGlobalAccess()", "undefined");
81 shouldBe("testThis.call()", "undefined");
82 shouldBe("testThis.apply()", "undefined");
83 shouldBe("testThis.call(undefined)", "undefined");
84 shouldBe("testThis.apply(undefined)", "undefined");
233 shouldBe('String(Object.getOwnPropertyDescriptor((function() { "use strict"; }).__proto__, "caller").get)', "'function () {\\n [native code]\\n}'");