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