summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Boolean/S9.2_A4_T3.js
blob: b357ab9052d8927f8cd9c3c5db37c86ff02674ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    Result of boolean conversion from number value is false if the argument
    is +0, -0, or NaN; otherwise, is true
esid: sec-toboolean
description: >
    Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY,
    Number.MAX_VALUE, Number.MIN_VALUE and some numbers convert to
    Boolean by explicit transformation
---*/
assert.sameValue(Boolean(Number.POSITIVE_INFINITY), true, 'Boolean(Number.POSITIVE_INFINITY) must return true');
assert.sameValue(Boolean(Number.NEGATIVE_INFINITY), true, 'Boolean(Number.NEGATIVE_INFINITY) must return true');
assert.sameValue(Boolean(Number.MAX_VALUE), true, 'Boolean(Number.MAX_VALUE) must return true');
assert.sameValue(Boolean(Number.MIN_VALUE), true, 'Boolean(Number.MIN_VALUE) must return true');
assert.sameValue(Boolean(13), true, 'Boolean(13) must return true');
assert.sameValue(Boolean(-13), true, 'Boolean(-13) must return true');
assert.sameValue(Boolean(1.3), true, 'Boolean(1.3) must return true');
assert.sameValue(Boolean(-1.3), true, 'Boolean(-1.3) must return true');

reportCompare(0, 0);