summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js')
-rw-r--r--js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js b/js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js
new file mode 100644
index 0000000000..57b24bd76a
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js
@@ -0,0 +1,39 @@
+// Copyright 2018 Rick Waldron. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-object.prototype.tostring
+description: has a [[BooleanData]] internal slot, let builtinTag be "Boolean".
+---*/
+assert.sameValue(
+ Object.prototype.toString.call(true),
+ "[object Boolean]",
+ "Object.prototype.toString.call(true) returns [object Boolean]"
+);
+assert.sameValue(
+ Object.prototype.toString.call(Object(true)),
+ "[object Boolean]",
+ "Object.prototype.toString.call(Object(true)) returns [object Boolean]"
+);
+assert.sameValue(
+ Object.prototype.toString.call(Boolean(true)),
+ "[object Boolean]",
+ "Object.prototype.toString.call(Boolean(true)) returns [object Boolean]"
+);
+assert.sameValue(
+ Object.prototype.toString.call(Object(Boolean(true))),
+ "[object Boolean]",
+ "Object.prototype.toString.call(Object(Boolean(true))) returns [object Boolean]"
+);
+assert.sameValue(
+ Object.prototype.toString.call(new Boolean(true)),
+ "[object Boolean]",
+ "Object.prototype.toString.call(new Boolean(true)) returns [object Boolean]"
+);
+assert.sameValue(
+ Object.prototype.toString.call(Object(new Boolean(true))),
+ "[object Boolean]",
+ "Object.prototype.toString.call(Object(new Boolean(true))) returns [object Boolean]"
+);
+
+reportCompare(0, 0);