(self)
| 11 | |
| 12 | class TestDurationString(unittest.TestCase): |
| 13 | def test_simple(self): |
| 14 | duration = datetime.timedelta(hours=1, minutes=3, seconds=5) |
| 15 | self.assertEqual(duration_string(duration), "01:03:05") |
| 16 | |
| 17 | def test_days(self): |
| 18 | duration = datetime.timedelta(days=1, hours=1, minutes=3, seconds=5) |
nothing calls this directly
no test coverage detected