aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.js b/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.js
deleted file mode 100644
index cf70b1902..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.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: S11.9.5_A6.1;
- * @section: 11.9.5, 11.9.6;
- * @assertion: If Type(x) and Type(y) are Undefined-s, return false;
- * @description: void 0, eval("var x") is undefined;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.9.5_A6.1",
-
-path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A6.1.js",
-
-assertion: "If Type(x) and Type(y) are Undefined-s, return false",
-
-description: "void 0, eval(\"var x\") is undefined",
-
-test: function testcase() {
- //CHECK#1
-if (undefined !== undefined) {
- $ERROR('#1: undefined === undefined');
-}
-
-//CHECK#2
-if (void 0 !== undefined) {
- $ERROR('#2: void 0 === undefined');
-}
-
-//CHECK#3
-if (undefined !== eval("var x")) {
- $ERROR('#3: undefined === eval("var x")');
-}
-
- }
-});
-