aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js')
-rw-r--r--test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js46
1 files changed, 0 insertions, 46 deletions
diff --git a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js b/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js
deleted file mode 100644
index 1544600c7..000000000
--- a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S10.1.5_A1.3_T1;
- * @section: 10.1.5, 15.1;
- * @assertion: Global object has properties such as built-in objects such as
- * Math, String, Date, parseInt, etc;
- * @description: Eval execution context - Value Properties;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S10.1.5_A1.3_T1",
-
-path: "TestCases/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.3_T1.js",
-
-assertion: "Global object has properties such as built-in objects such as",
-
-description: "Eval execution context - Value Properties",
-
-test: function testcase() {
- var evalStr =
-'//CHECK#1\n'+
-'if ( NaN === null ) {\n'+
-' $ERROR("#1: NaN === null");\n'+
-'}\n'+
-
-'//CHECK#2\n'+
-'if ( Infinity === null ) {\n'+
-' $ERROR("#2: Infinity === null");\n'+
-'}\n'+
-
-'//CHECK#3\n'+
-'if ( undefined === null ) {\n'+
-' $ERROR("#3: undefined === null");\n'+
-'}\n'+
-';\n';
-
-eval(evalStr);
-
- }
-});
-