(self)
| 62 | self._test_partial_dict(d) |
| 63 | |
| 64 | def test_alternative_ids(self): |
| 65 | d = { |
| 66 | 'alternative_id': [ |
| 67 | "test 1", |
| 68 | "not a test 2" |
| 69 | ], |
| 70 | } |
| 71 | |
| 72 | self._test_partial_dict(d) |
| 73 | |
| 74 | def test_valid_time_positions(self): |
| 75 | d = { |
nothing calls this directly
no test coverage detected