Esempio n. 1
0
 def test_re_prefix_match_ascii_line_with_apostrophe(self):
     self.assertIsNotNone(
         database.re_prefix(u'    ["ci"] = "Côte d\'Ivoire",'))
Esempio n. 2
0
 def test_re_prefix_match_ascii_line_with_accents(self):
     self.assertIsNotNone(database.re_prefix(u'    ["re"] = "Réunion",'))
Esempio n. 3
0
 def test_re_prefix_match_ascii_line_with_space(self):
     self.assertIsNotNone(
         database.re_prefix(u'    ["gq"] = "Equatorial Guinea",'))
Esempio n. 4
0
 def test_re_prefix_match_ascii_line_with_dash(self):
     self.assertIsNotNone(
         database.re_prefix(u'    ["gw"] = "Guinea-Bissau",'))
Esempio n. 5
0
 def test_re_prefix_match_ascii_line(self):
     self.assertIsNotNone(database.re_prefix(u'    ["az"] = "Azerbaijan",'))