22 lines
632 B
Python
22 lines
632 B
Python
|
# Copyright (C) 2020 by Maike <maike@systemli.org>
|
||
|
# Copyright (C) 2020 by Cathy Hu <cathy.hu@fau.de>
|
||
|
#
|
||
|
# SPDX-License-Identifier: 0BSD
|
||
|
|
||
|
|
||
|
from fastapi import status
|
||
|
from pytest import fixture
|
||
|
|
||
|
|
||
|
@fixture(scope="function")
|
||
|
def email_row(client, hood_id, auth_header):
|
||
|
response = client.post(
|
||
|
'/api/hoods/%d/email/' % 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()
|
||
|
client.delete('/api/hoods/%d/email/%d' % (hood_id, email_id), headers=auth_header)
|