(sid: str = 's1', t: float = 1000.0)
| 18 | |
| 19 | |
| 20 | def _entry(sid: str = 's1', t: float = 1000.0) -> SessionIndexEntry: |
| 21 | return SessionIndexEntry( |
| 22 | session_id=sid, |
| 23 | transcript_session_id=f'tx_{sid}', |
| 24 | cwd='/tmp/work', |
| 25 | created_at=t, |
| 26 | last_active_at=t, |
| 27 | ) |
| 28 | |
| 29 | |
| 30 | def test_load_missing_file_returns_empty(tmp_path): |
no test coverage detected