コード例 #1
0
 def test_numeric(self):
     country = mobile_codes.numeric(u'010')
     self.assertEqual(country.mcc, None)
コード例 #2
0
 def test_numeric(self):
     country = mobile_codes.numeric(u'124')
     self.assertEqual(country.numeric, u'124')
コード例 #3
0
ファイル: tests.py プロジェクト: jwhitlock/ichnaea
 def test_numeric_fail(self):
     with pytest.raises(KeyError):
         mobile_codes.numeric("000")
コード例 #4
0
ファイル: tests.py プロジェクト: jwhitlock/ichnaea
 def test_numeric(self):
     country = mobile_codes.numeric("124")
     assert country.numeric == "124"
コード例 #5
0
ファイル: tests.py プロジェクト: jwhitlock/ichnaea
 def test_numeric(self):
     country = mobile_codes.numeric("010")
     assert country.mcc is None
コード例 #6
0
 def test_numeric(self):
     country = mobile_codes.numeric(u'124')
     self.assertEqual(country.numeric, u'124')
コード例 #7
0
 def test_numeric(self):
     country = mobile_codes.numeric(u'010')
     self.assertEqual(country.mcc, None)