Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_mobile_operator.js
blob: 430a6138d2c568121df1bd826e3466693fb10f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';

var MockMobileOperator = {
  userFacingInfo: function mmo_userFacingInfo(mobileConnection) {
    return {
      'operator': this.mOperator,
      'carrier': this.mCarrier,
      'region': this.mRegion
    }
  },

  mOperator: '',
  mCarrier: '',
  mRegion: ''
};