import pytest from src.backend.users import manage def test_variable_to_keep_fire_and_forget_task_reference_exists(): assert manage._ is None class TestVerifyAuth0: @pytest.mark.asyncio async def test_verify_auth0_no_token(self): with pytest.raises(manage.HTTPException): await manage.verify_auth0(token=None)