예제 #1
0
 def test_equal_3(self):
     self.assertEqual(str_repeat('abc', 2), 'abcabc')
예제 #2
0
 def test_equal_1(self):
     self.assertEqual(str_repeat('a', 4), 'aaaa')
예제 #3
0
 def test_equal_2(self):
     self.assertEqual(str_repeat('hello ', 3), 'hello hello hello ')