コード例 #1
0
 def test_correct_time5(self):
     """Does this work with incorrect input?"""
     input = "8:45"
     expected = "8:45:00"
     self.assertEqual(correct_time(input), expected)
コード例 #2
0
 def test_correct_time2(self):
     """Does this work with correct input?"""
     input = "15:15"
     expected = "15:15:00"
     self.assertEqual(correct_time(input), expected)