def test_4(self): self.assertEqual("testa", remove_suffix("testa", "test"))
def test_1(self): self.assertEqual("test", remove_suffix("test", ""))
def test_3(self): self.assertEqual("test", remove_suffix("testing", "ing"))
def test_0(self): self.assertEqual("", remove_suffix("", "suffix"))