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