Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_navigator_moz_mobile_connection.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/test/unit/mock_navigator_moz_mobile_connection.js')
-rw-r--r--apps/system/test/unit/mock_navigator_moz_mobile_connection.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/apps/system/test/unit/mock_navigator_moz_mobile_connection.js b/apps/system/test/unit/mock_navigator_moz_mobile_connection.js
deleted file mode 100644
index fb05aaa..0000000
--- a/apps/system/test/unit/mock_navigator_moz_mobile_connection.js
+++ /dev/null
@@ -1,21 +0,0 @@
-'use strict';
-
-(function() {
-
- var props = ['voice', 'cardState', 'iccInfo', 'data'];
-
- function mnmmc_init() {
- props.forEach(function(prop) {
- Mock[prop] = null;
- });
- }
-
- var Mock = {
- addEventListener: function() {},
- mTeardown: mnmmc_init
- };
-
- mnmmc_init();
-
- window.MockNavigatorMozMobileConnection = Mock;
-})();