aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.12/test/test-globals.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/addon-sdk-1.12/test/test-globals.js')
-rw-r--r--tools/addon-sdk-1.12/test/test-globals.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/addon-sdk-1.12/test/test-globals.js b/tools/addon-sdk-1.12/test/test-globals.js
new file mode 100644
index 0000000..1d8caf0
--- /dev/null
+++ b/tools/addon-sdk-1.12/test/test-globals.js
@@ -0,0 +1,22 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+Object.defineProperty(this, "global", { value: this });
+
+exports.testGlobals = function(test) {
+ // the only globals in module scope should be:
+ // module, exports, require, dump, console
+ test.assertObject(module, "have 'module', good");
+ test.assertObject(exports, "have 'exports', good");
+ test.assertFunction(require, "have 'require', good");
+ test.assertFunction(dump, "have 'dump', good");
+ test.assertObject(console, "have 'console', good");
+
+ // in particular, these old globals should no longer be present
+ test.assert(!('packaging' in global), "no 'packaging', good");
+ test.assert(!('memory' in global), "no 'memory', good");
+
+ test.assertMatches(module.uri, /test-globals\.js$/,
+ 'should contain filename');
+};