eventcally/tests/api/test_dump.py
2023-05-21 19:05:28 +02:00

10 lines
297 B
Python

from tests.seeder import Seeder
from tests.utils import UtilActions
def test_read(client, seeder: Seeder, utils: UtilActions):
_, admin_unit_id = seeder.setup_api_access()
url = utils.get_url("api_v1_dump")
response = utils.get_json(url)
utils.assert_response_notFound(response)