Beispiel #1
0
 def test_whitespace(self):
     assert " " == utils.convert_char(" ")
Beispiel #2
0
 def test_literal(self):
     assert "e" == utils.convert_char("e")
Beispiel #3
0
 def test_punctation(self):
     assert "." == utils.convert_char(".")
Beispiel #4
0
 def test_utf(self):
     assert "\\xe9", utils.convert_char(u"\xe9")
Beispiel #5
0
 def test_digit(self):
     assert "9" == utils.convert_char(u"9")
Beispiel #6
0
 def test_whitespace(self):
     assert " " == utils.convert_char(" ")
Beispiel #7
0
 def test_punctation(self):
     assert "." == utils.convert_char(".")
Beispiel #8
0
 def test_literal(self):
     assert "e" == utils.convert_char("e")
Beispiel #9
0
 def test_digit(self):
     assert "9" == utils.convert_char(u"9")
Beispiel #10
0
 def test_utf(self):
     assert "\\xe9", utils.convert_char(u"\xe9")