aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch10/10.2/10.2.js
diff options
context:
space:
mode:
authorNorbert Lindenberg <ecmascript@lindenbergsoftware.com>2012-08-26 20:48:49 -0700
committerNorbert Lindenberg <ecmascript@lindenbergsoftware.com>2012-08-26 20:48:49 -0700
commit8cad7d03cea197bd374b35f4af95a58c7b583538 (patch)
tree2b2da7d73e42bd4026714127b4af56ee77759d88 /test/suite/intl402/ch10/10.2/10.2.js
parent1be52e222bddc6acfb14ad3a655d6359e121dc93 (diff)
Added tests for requirements imposed on the built-in objects of the ECMAScript Internationalization API Specification by the introduction of chapter 15 of the ECMAScript Language Specification.
- Removed some old tests that were redundant with the new tests. - Added testBuiltInObject.js as standard include for all console tests in test262.py – see related bug 574.
Diffstat (limited to 'test/suite/intl402/ch10/10.2/10.2.js')
-rw-r--r--test/suite/intl402/ch10/10.2/10.2.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/suite/intl402/ch10/10.2/10.2.js b/test/suite/intl402/ch10/10.2/10.2.js
deleted file mode 100644
index 2a9c073e9..000000000
--- a/test/suite/intl402/ch10/10.2/10.2.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2012 Google Inc. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @description Tests that the Intl.Collator constructor has a length
- * property that equals 2.
- */
-
-if (!Intl.Collator.hasOwnProperty('length')) {
- $ERROR('Intl.Collator has no length property');
-}
-
-if (Intl.Collator.length != 2) {
- $ERROR('Intl.Collator.length is not 2.');
-}
-