Пример #1
0
 def test_sections_numbers(self):
     expect = ('114', 'Neihu Dist., Taipei City', 'Sec. 1, Neihu Rd.', '', {
         '巷': '',
         '弄': '',
         '號': '306',
         '樓': '',
         '室': ''
     })
     cut_result = twaddress.cut('台北市內湖區內湖路1段306號')
     print(cut_result)
     self.assertEqual(cut_result, expect)
Пример #2
0
 def test_short_address(self):
     expect = ['高雄市', '三民區', '建工路', '415號']
     self.assertEqual(twaddress.cut('高雄市三民區建工路415號'), expect)
Пример #3
0
 def test_hard_address(self):
     expect = []
     self.assertEqual(twaddress.cut('嘉義市溪興街153巷12弄25號5樓3室'), expect)
Пример #4
0
 def test_normal_address(self):
     expect = ['高雄市', '前鎮區', '成功二路', '25號', '5樓之1']
     self.assertEqual(twaddress.cut('高雄市前鎮區成功二路25號5樓之1'), expect)