(self)
| 597 | |
| 598 | class TestReadDatetime(unittest.TestCase): |
| 599 | def test_datetime_value(self): |
| 600 | value = datetime.now() |
| 601 | actual_value = model_helper.read_datetime_from_config('p1', {'p1': value}) |
| 602 | self.assertEqual(value, actual_value) |
| 603 | |
| 604 | def test_string_value(self): |
| 605 | actual_value = model_helper.read_datetime_from_config('p1', {'p1': '2020-07-10T15:30:59.123456Z'}) |
nothing calls this directly
no outgoing calls
no test coverage detected