(tmp_path: Path)
| 86 | |
| 87 | |
| 88 | def test_writer_close_is_idempotent(tmp_path: Path) -> None: |
| 89 | w = TranscriptWriter(tmp_path / "x.jsonl") |
| 90 | w.close() |
| 91 | w.close() # second call must not raise |
| 92 | |
| 93 | |
| 94 | def test_writer_after_close_raises(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected