aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch08/8.1/8.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch08/8.1/8.1.js')
-rw-r--r--test/suite/intl402/ch08/8.1/8.1.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/suite/intl402/ch08/8.1/8.1.js b/test/suite/intl402/ch08/8.1/8.1.js
deleted file mode 100644
index f9ee77111..000000000
--- a/test/suite/intl402/ch08/8.1/8.1.js
+++ /dev/null
@@ -1,23 +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 Intl object has proper constructors.
- */
-
-if (Intl === undefined) {
- $ERROR('Intl object is undefined.');
-}
-
-if (typeof Intl.Collator !== 'function') {
- $ERROR('Intl.Collator is not a function.');
-}
-
-if (typeof Intl.NumberFormat !== 'function') {
- $ERROR('Intl.NumberFormat is not a function.');
-}
-
-if (typeof Intl.DateTimeFormat !== 'function') {
- $ERROR('Intl.DateTimeFormat is not a function.');
-}
-