Ejemplo n.º 1
0
 def test_4(self):
     self.assertEqual("atest", remove_prefix("atest", "test"))
Ejemplo n.º 2
0
 def test_1(self):
     self.assertEqual("test", remove_prefix("test", ""))
Ejemplo n.º 3
0
 def test_3(self):
     self.assertEqual("ing", remove_prefix("testing", "test"))
Ejemplo n.º 4
0
 def test_0(self):
     self.assertEqual("", remove_prefix("", "prefix"))