aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js')
-rw-r--r--test/suite/sputnik_converted/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/suite/sputnik_converted/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js b/test/suite/sputnik_converted/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js
deleted file mode 100644
index 2f2c91b3e..000000000
--- a/test/suite/sputnik_converted/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S8.3_A1_T1;
- * @section: 8.3;
- * @assertion: The Boolean type have two values, called true and false;
- * @description: Assign true and false to variables;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S8.3_A1_T1",
-
-path: "TestCases/08_Types/8.3_The_Boolean_Type/S8.3_A1_T1.js",
-
-assertion: "The Boolean type have two values, called true and false",
-
-description: "Assign true and false to variables",
-
-test: function testcase() {
- if (x == undefined) {
- $ERROR("x == undefined, but actual is "+ x);
-}
-
-////////////////////////////////////////////////////////////////////////
-// CHECK#1
-var x = true;
-var y = false;
-//
-////////////////////////////////////////////////////////////////////////
-
- }
-});
-