(tmp_path, **overrides)
| 12 | |
| 13 | |
| 14 | def _make_manager(tmp_path, **overrides): |
| 15 | return SessionManager( |
| 16 | workspace=str(tmp_path), |
| 17 | index_path=tmp_path / 'idx.json', |
| 18 | **overrides, |
| 19 | ) |
| 20 | |
| 21 | |
| 22 | def test_create_session_assigns_id_and_records_starting(tmp_path): |
no test coverage detected