summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/toString/Object.prototype.toString.call-boolean.js
blob: 57b24bd76a44f00ffba2ef48a392dfedd8c51a68 (plain)
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
// 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);