# Copyright (C) 2020 by Maike # Copyright (C) 2020 by Cathy Hu # Copyright (C) 2020 by Martin Rey # # SPDX-License-Identifier: 0BSD from fastapi import status import pytest @pytest.fixture(scope="function") @pytest.mark.anyio async def email_row(client, hood_id, auth_header): response = await client.post( "/api/hoods/{0}/email/".format(hood_id), json={"name": "kibicara-test"}, headers=auth_header, ) assert response.status_code == status.HTTP_201_CREATED email_id = int(response.headers["Location"]) yield response.json() await client.delete( "/api/hoods/{0}/email/{1}".format(hood_id, email_id), headers=auth_header )