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