コード例 #1
0
ファイル: test_utils.py プロジェクト: frank2411/cuckoo_dev
 def test_whitespace(self):
     assert " " == utils.convert_char(" ")
コード例 #2
0
ファイル: test_utils.py プロジェクト: frank2411/cuckoo_dev
 def test_literal(self):
     assert "e" == utils.convert_char("e")
コード例 #3
0
ファイル: test_utils.py プロジェクト: frank2411/cuckoo_dev
 def test_punctation(self):
     assert "." == utils.convert_char(".")
コード例 #4
0
ファイル: test_utils.py プロジェクト: frank2411/cuckoo_dev
 def test_utf(self):
     assert "\\xe9", utils.convert_char(u"\xe9")
コード例 #5
0
ファイル: test_utils.py プロジェクト: frank2411/cuckoo_dev
 def test_digit(self):
     assert "9" == utils.convert_char(u"9")
コード例 #6
0
ファイル: test_utils.py プロジェクト: consen/cuckoo
 def test_whitespace(self):
     assert " " == utils.convert_char(" ")
コード例 #7
0
ファイル: test_utils.py プロジェクト: consen/cuckoo
 def test_punctation(self):
     assert "." == utils.convert_char(".")
コード例 #8
0
ファイル: test_utils.py プロジェクト: consen/cuckoo
 def test_literal(self):
     assert "e" == utils.convert_char("e")
コード例 #9
0
ファイル: test_utils.py プロジェクト: consen/cuckoo
 def test_digit(self):
     assert "9" == utils.convert_char(u"9")
コード例 #10
0
ファイル: test_utils.py プロジェクト: consen/cuckoo
 def test_utf(self):
     assert "\\xe9", utils.convert_char(u"\xe9")