def test3(self): string = 'KUULILENNUTEETUNNELILUUK' res = do(string) exp = 'KUULILENNUTEETUNNELILUUK' self.assertEqual(res, exp)
def test1(self): string = 'abca' res = do(string) exp = 'aba' self.assertEqual(res, exp)
def test2(self): string = 'babcad' res = do(string) exp = 'bab' self.assertEqual(res, exp)