コード例 #1
0
 def test_removePunctuation_5(self):
     sent = "(def add1 (lambda (n)) + n 1)"
     self.assertEqual(textprocessing._removePunctuation(sent),
                      "def add1 lambda n  n 1")
コード例 #2
0
 def test_removePunctuation_4(self):
     import string
     sent = string.punctuation
     self.assertEqual(textprocessing._removePunctuation(sent), "")
コード例 #3
0
 def test_removePunctuation_3(self):
     sent = "Hi.There"
     self.assertEqual(textprocessing._removePunctuation(sent), "HiThere")
コード例 #4
0
 def test_removePunctuation_2(self):
     sent = "helloself."
     self.assertEqual(textprocessing._removePunctuation(sent), "helloself")
コード例 #5
0
 def test_removePunctuation_1(self):
     sent = ".?:"
     self.assertEqual(textprocessing._removePunctuation(sent), "")
コード例 #6
0
ファイル: test_textprocessing.py プロジェクト: skinn009/rnlp
 def test_removePunctuation_2(self):
     sent = 'helloself.'
     self.assertEqual(textprocessing._removePunctuation(sent), 'helloself')