()
| 23 | create_calls = 0 |
| 24 | |
| 25 | async def fake_create_session() -> GuestSession: |
| 26 | nonlocal create_calls |
| 27 | create_calls += 1 |
| 28 | return _make_session("duplicate-user", str(create_calls)) |
| 29 | |
| 30 | monkeypatch.setattr(pool, "_create_session", fake_create_session) |
| 31 |
nothing calls this directly
no test coverage detected