aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js')
-rw-r--r--test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js68
1 files changed, 0 insertions, 68 deletions
diff --git a/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js b/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js
deleted file mode 100644
index e02affcf0..000000000
--- a/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js
+++ /dev/null
@@ -1,68 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S13.2_A4_T1;
-* @section: 13.2;
-* @assertion: When Function object(F) is constructed the following steps from 9 to 11 take place
-* 9.Create a new object as would be constructed by the expression new Object().
-* 10. Set the constructor property of Result(9) to F. This property is given attributes { DontEnum }.
-* 11. Set the "prototype" property of F to Result(9).;
-* @description: Checking prototype, prototype.constructor properties and {DontEnum} property of a constructor.
-* Using "function __func(){}" as a FunctionDeclaration;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S13.2_A4_T1",
-
-path: "TestCases/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T1.js",
-
-assertion: "When Function object(F) is constructed the following steps from 9 to 11 take place",
-
-description: "Checking prototype, prototype.constructor properties and {DontEnum} property of a constructor.",
-
-test: function testcase() {
- function __func(){};
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (typeof __func.prototype !== 'object') {
- $ERROR('#1: typeof __func.prototype === \'object\'. Actual: typeof __gunc.prototype ==='+typeof __gunc.prototype);
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (__func.prototype.constructor !== __func) {
- $ERROR('#2: __func.prototype.constructor === __func. Actual: __gunc.prototype.constructor ==='+__gunc.prototype.constructor);
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-var __constructor_was__enumed;
-
-for (__prop in __func.prototype){
- if (__prop = 'constructor')
- __constructor_was__enumed = true;
-}
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#3
-if (__constructor_was__enumed) {
- $ERROR('#3: __constructor_was__enumed === false. Actual: __constructor_was__enumed ==='+__constructor_was__enumed);
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-
-
-
-
-
- }
-});
-