(user_id: str, token_suffix: str)
| 8 | |
| 9 | |
| 10 | def _make_session(user_id: str, token_suffix: str) -> GuestSession: |
| 11 | return GuestSession( |
| 12 | token=f"token-{token_suffix}", |
| 13 | user_id=user_id, |
| 14 | username=f"Guest-{user_id}", |
| 15 | ) |
| 16 | |
| 17 | |
| 18 | @pytest.mark.asyncio |
no test coverage detected