summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js b/js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js
new file mode 100644
index 0000000000..1f8dcd4d71
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A3.1_T1.js
@@ -0,0 +1,46 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: Operator use ToString from separator
+esid: sec-array.prototype.join
+description: >
+ Checking separator in ["", "\\", "&", true, Infinity, null,
+ undefind, NaN]
+---*/
+
+var x = new Array(0, 1, 2, 3);
+if (x.join("") !== "0123") {
+ throw new Test262Error('#0: x = new Array(0,1,2,3); x.join("") === "0123". Actual: ' + (x.join("")));
+}
+
+x = new Array(0, 1, 2, 3);
+if (x.join("\\") !== "0\\1\\2\\3") {
+ throw new Test262Error('#1: x = new Array(0,1,2,3); x.join("\\") === "0\\1\\2\\3". Actual: ' + (x.join("\\")));
+}
+
+if (x.join("&") !== "0&1&2&3") {
+ throw new Test262Error('#2: x = new Array(0,1,2,3); x.join("&") === "0&1&2&3". Actual: ' + (x.join("&")));
+}
+
+if (x.join(true) !== "0true1true2true3") {
+ throw new Test262Error('#3: x = new Array(0,1,2,3); x.join(true) === "0true1true2true3". Actual: ' + (x.join(true)));
+}
+
+if (x.join(Infinity) !== "0Infinity1Infinity2Infinity3") {
+ throw new Test262Error('#4: x = new Array(0,1,2,3); x.join(Infinity) === "0Infinity1Infinity2Infinity3". Actual: ' + (x.join(Infinity)));
+}
+
+if (x.join(null) !== "0null1null2null3") {
+ throw new Test262Error('#3: 5 = new Array(0,1,2,3); x.join(null) === "0null1null2null3". Actual: ' + (x.join(null)));
+}
+
+if (x.join(undefined) !== "0,1,2,3") {
+ throw new Test262Error('#6: x = new Array(0,1,2,3); x.join(undefined) === "0,1,2,3". Actual: ' + (x.join(undefined)));
+}
+
+if (x.join(NaN) !== "0NaN1NaN2NaN3") {
+ throw new Test262Error('#7: x = new Array(0,1,2,3); x.join(NaN) === "0NaN1NaN2NaN3". Actual: ' + (x.join(NaN)));
+}
+
+reportCompare(0, 0);