(tmp_path: Path)
| 185 | |
| 186 | |
| 187 | def test_reader_skips_blank_lines(tmp_path: Path) -> None: |
| 188 | path = tmp_path / "x.jsonl" |
| 189 | path.write_text('{"a":1}\n\n\n{"b":2}\n', encoding="utf-8") |
| 190 | assert list(TranscriptReader(path)) == [{"a": 1}, {"b": 2}] |
| 191 | |
| 192 | |
| 193 | def test_reader_read_all_materializes_list(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected