aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test
diff options
context:
space:
mode:
Diffstat (limited to 'tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test')
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/main.js17
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/package.json6
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/tests/test-minimal.js7
3 files changed, 0 insertions, 30 deletions
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/main.js b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/main.js
deleted file mode 100644
index 980ea88..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/main.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/* 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/. */
-
-const { Cc, Ci } = require("chrome");
-
-exports.main = function(options, callbacks) {
- // Close Firefox window. Firefox should quit.
- require("api-utils/window-utils").activeBrowserWindow.close();
-
- // But not on Mac where it stay alive! We have to request application quit.
- if (require("api-utils/runtime").OS == "Darwin") {
- let appStartup = Cc['@mozilla.org/toolkit/app-startup;1'].
- getService(Ci.nsIAppStartup);
- appStartup.quit(appStartup.eAttemptQuit);
- }
-}
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/package.json b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/package.json
deleted file mode 100644
index afbc158..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/package.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "id": "simplest-test",
- "directories": {
- "lib": "."
- }
-}
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/tests/test-minimal.js b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/tests/test-minimal.js
deleted file mode 100644
index 533cd34..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/addons/simplest-test/tests/test-minimal.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/* 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/. */
-
-exports.minimalTest = function(test) {
- test.assert(true);
-};