Example #1
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('', ''), "")
Example #2
0
 def test_Vocabulary(self):
     with self.assertRaises(IndexError):
         lab1.Vocabulary('hello hello hello hello', 'hello')
Example #3
0
 def test_Vocabulary(self):
     self.assertEqual(
         lab1.Vocabulary('hello hello hello hello', 'hello goodbye'),
         "goodbye goodbye goodbye goodbye")
Example #4
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('hello world', ''), "hello world")
Example #5
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('Privet mir', 'hello goodbye'),
                      "Privet mir")
Example #6
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('hello world', 'hello goodbye'),
                      "goodbye world")
Example #7
0
 def test_Vocabulary(self):
     self.assertEqual(
         lab1.Vocabulary('hello earth, hello mars, hello sun',
                         'hello goodbye\nsun moon'),
         "goodbye earth, goodbye mars, goodbye moon")