(admin_client)
| 66 | |
| 67 | @pytest.fixture() |
| 68 | def organisation(admin_client): # type: ignore[no-untyped-def] |
| 69 | organisation_data = {"name": "Test org"} |
| 70 | url = reverse("api-v1:organisations:organisation-list") |
| 71 | response = admin_client.post(url, data=organisation_data) |
| 72 | return response.json()["id"] |
| 73 | |
| 74 | |
| 75 | @pytest.fixture() |