Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_statusbar.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/test/unit/mock_statusbar.js')
-rw-r--r--apps/system/test/unit/mock_statusbar.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/apps/system/test/unit/mock_statusbar.js b/apps/system/test/unit/mock_statusbar.js
deleted file mode 100644
index 8813a3b..0000000
--- a/apps/system/test/unit/mock_statusbar.js
+++ /dev/null
@@ -1,36 +0,0 @@
-var MockStatusBar = {
- notificationsCount: null,
-
- wasMethodCalled: {},
-
- methodCalled: function msb_methodCalled(name) {
- this.wasMethodCalled[name] =
- this.wasMethodCalled[name] ? this.wasMethodCalled[name]++ : 1;
- },
-
- updateNotification: function(count) {
- var number = new Number(count);
- this.notificationsCount = number.toString();
- this.methodCalled('updateNotification');
- },
-
- updateNotificationUnread: function(unread) {
- this.mNotificationUnread = unread;
- },
-
- mNotificationUnread: false,
- mTeardown: function teardown() {
- this.notificationsCount = null;
- this.mNotificationsUpdated = false;
- this.mNotificationUnread = false;
- this.wasMethodCalled = {};
- },
-
- incSystemDownloads: function msb_incSystemDownloads() {
- this.methodCalled('incSystemDownloads');
- },
-
- decSystemDownloads: function msb_decSystemDownloads() {
- this.methodCalled('decSystemDownloads');
- }
-};