Пример #1
0
 def test3(self):
     string = 'KUULILENNUTEETUNNELILUUK'
     res = do(string)
     exp = 'KUULILENNUTEETUNNELILUUK'
     self.assertEqual(res, exp)
Пример #2
0
 def test1(self):
     string = 'abca'
     res = do(string)
     exp = 'aba'
     self.assertEqual(res, exp)
Пример #3
0
 def test2(self):
     string = 'babcad'
     res = do(string)
     exp = 'bab'
     self.assertEqual(res, exp)