(self)
| 157 | self.assertEqual(len(turns), 0) |
| 158 | |
| 159 | def test_multiple_sessions(self): |
| 160 | path = self._write_jsonl("test.jsonl", [ |
| 161 | _make_assistant_record(session_id="s1"), |
| 162 | _make_assistant_record(session_id="s2"), |
| 163 | ]) |
| 164 | metas, turns, _, _ = parse_jsonl_file(path) |
| 165 | self.assertEqual(len(metas), 2) |
| 166 | self.assertEqual(len(turns), 2) |
| 167 | |
| 168 | def test_session_timestamps_tracked(self): |
| 169 | path = self._write_jsonl("test.jsonl", [ |
nothing calls this directly
no test coverage detected