/
developer_atatanoff
/
simple_auth_fastapi
Обзор
Документация
Войти
/
developer_atatanoff
/
simple_auth_fastapi
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tests/tests_auth.py
10 строк
413 B
Alexey N. Tatanoff
first_commit
28 ноя 2025, 13:12
28 ноя 2025, 13:12
40027ac
Код
Авторство
О чём код?
from auth.repository import AuthUserRepository import asyncio async def test_del_session_key(): rep = AuthUserRepository() countrow = await rep.delete_refresh_token("18a342ea5e3386eb99dc4c2fee4936e01a48041f9eec2786d06316ca278bdcc5") print(countrow) res = await rep.get_session("18a342ea5e3386eb99dc4c2fee4936e01a48041f9eec2786d06316ca278bdcc5") print(res) asyncio.run(test_del_session_key())