(self)
| 69 | self.assertEqual(parse_duration(duration_iso_string(duration)), duration) |
| 70 | |
| 71 | def test_days(self): |
| 72 | duration = datetime.timedelta(days=1, hours=1, minutes=3, seconds=5) |
| 73 | self.assertEqual(parse_duration(duration_iso_string(duration)), duration) |
| 74 | |
| 75 | def test_microseconds(self): |
| 76 | duration = datetime.timedelta(hours=1, minutes=3, seconds=5, microseconds=12345) |
nothing calls this directly
no test coverage detected