aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js b/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js
deleted file mode 100644
index a001620d3..000000000
--- a/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js
+++ /dev/null
@@ -1,41 +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.2.4.3_A1;
-* @section: 15.2.4.3;
-* @assertion: toLocaleString function returns the result of calling toString();
-* @description: Checking the type of Object.prototype.toLocaleString and the returned result;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.2.4.3_A1",
-
-path: "TestCases/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.3_Object.prototype.toLocaleString/S15.2.4.3_A1.js",
-
-assertion: "toLocaleString function returns the result of calling toString()",
-
-description: "Checking the type of Object.prototype.toLocaleString and the returned result",
-
-test: function testcase() {
- //CHECK#1
-if (typeof Object.prototype.toLocaleString !== "function") {
- $ERROR('#1: toLocaleString method defined');
-}
-
-//CHECK#2
-if (Object.prototype.toLocaleString() !== Object.prototype.toString()) {
- $ERROR('#1: toLocaleString function returns the result of calling toString()');
-}
-
-//CHECK#2
-if ({}.toLocaleString()!=={}.toString()) {
- $ERROR('#2: toLocaleString function returns the result of calling toString()');
-}
-
- }
-});
-