aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js')
-rw-r--r--test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js b/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js
deleted file mode 100644
index 7f0113861..000000000
--- a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js
+++ /dev/null
@@ -1,36 +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.1_A2_T1;
- * @section: 10.1.1;
- * @assertion: There are two types of Function objects. Internal functions
- * are built-in objects of the language, such as parseInt and Math.exp;
- * @description: Checking types of parseInt and Math.exp;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S10.1.1_A2_T1",
-
-path: "TestCases/10_Execution_Contexts/10.1_Definitions/S10.1.1_A2_T1.js",
-
-assertion: "There are two types of Function objects. Internal functions",
-
-description: "Checking types of parseInt and Math.exp",
-
-test: function testcase() {
- //CHECK#1
-if(typeof(Math.exp)!=="function")
- $ERROR('#1: typeof(Math.exp(10))!=="function" '+typeof(Math.exp()));
-
-//CHECK#2
-if(typeof(parseInt)!=="function")
- $ERROR('#2: typeof(parseInt())!=="function" '+typeof(parseInt()));
-
-
- }
-});
-