(decoder: JSONLDecoder[Any] | AsyncJSONLDecoder[Any])
| 72 | |
| 73 | |
| 74 | async def assert_empty_iter(decoder: JSONLDecoder[Any] | AsyncJSONLDecoder[Any]) -> None: |
| 75 | with pytest.raises((StopAsyncIteration, RuntimeError)): |
| 76 | await iter_next(decoder) |
| 77 | |
| 78 | |
| 79 | def make_jsonl_iterator( |
no test coverage detected