(self)
| 23 | self.assertEqual(duration_string(duration), "01:03:05.012345") |
| 24 | |
| 25 | def test_negative(self): |
| 26 | duration = datetime.timedelta(days=-1, hours=1, minutes=3, seconds=5) |
| 27 | self.assertEqual(duration_string(duration), "-1 01:03:05") |
| 28 | |
| 29 | |
| 30 | class TestParseDurationRoundtrip(unittest.TestCase): |
nothing calls this directly
no test coverage detected