(self)
| 29 | self.assertEqual(expected, parsed) |
| 30 | |
| 31 | def test_parse_wrong_time(self): |
| 32 | self.assertRaisesRegex( |
| 33 | ValueError, |
| 34 | 'does not match format', |
| 35 | date_utils.parse_iso_datetime, |
| 36 | '15:30:59 2020-07-10') |
| 37 | |
| 38 | |
| 39 | class TestToIsoString(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected