(
self,
test_app_client: tuple[httpx.AsyncClient, bool],
verified_user: UserModel,
)
| 877 | assert response.status_code == status.HTTP_403_FORBIDDEN |
| 878 | |
| 879 | async def test_verified_user( |
| 880 | self, |
| 881 | test_app_client: tuple[httpx.AsyncClient, bool], |
| 882 | verified_user: UserModel, |
| 883 | ): |
| 884 | client, _ = test_app_client |
| 885 | response = await client.delete( |
| 886 | "/d35d213e-f3d8-4f08-954a-7e0d1bea286f", |
| 887 | headers={"Authorization": f"Bearer {verified_user.id}"}, |
| 888 | ) |
| 889 | assert response.status_code == status.HTTP_403_FORBIDDEN |
| 890 | |
| 891 | async def test_not_existing_user_unverified_superuser( |
| 892 | self, |