Test reading empty file
(self, tmp_path)
| 107 | assert len(result) == 3 |
| 108 | |
| 109 | def test_empty_file(self, tmp_path): |
| 110 | """Test reading empty file""" |
| 111 | path = tmp_path / "trace.jsonl" |
| 112 | path.touch() |
| 113 | |
| 114 | result = list(iter_jsonl(path)) |
| 115 | assert result == [] |
| 116 | |
| 117 | |
| 118 | class TestReplayDataclasses: |
nothing calls this directly
no test coverage detected