aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js b/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js
deleted file mode 100644
index 4ba84f2e5..000000000
--- a/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S15.5.1.1_A1_T8;
-* @section: 15.5.1.1;
-* @assertion: When String is called as a function rather than as a constructor, it performs a type conversion;
-* @description: Call String(new Array);
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.5.1.1_A1_T8",
-
-path: "TestCases/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T8.js",
-
-assertion: "When String is called as a function rather than as a constructor, it performs a type conversion",
-
-description: "Call String(new Array)",
-
-test: function testcase() {
- var __old__Array__prototype__toString = Array.prototype.toString;
-
-Array.prototype.toString=function(){return "__ARRAY__";};
-
-var __str = String(new Array);
-
-// restore old toString method just in case
-Array.prototype.toString=__old__Array__prototype__toString;
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (typeof __str !== "string") {
- $ERROR('#1: __str = String(new Array); typeof __str === "string". Actual: typeof __str ==='+typeof __str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (__str !== "__ARRAY__") {
- $ERROR('#2: Array.prototype.toString=function(){return "__ARRAY__";}; __str = String(new Array); __str === "__ARRAY__". Actual: __str ==='+__str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
- }
-});
-