Skip to content

Commit

Permalink
backoffice: decision added to search api
Browse files Browse the repository at this point in the history
  • Loading branch information
DonHaul committed Aug 26, 2024
1 parent af337ec commit 833bc1e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion backoffice/backoffice/workflows/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def test_delete(self):


class TestWorkflowSearchViewSet(BaseTransactionTestCase):
endpoint = "/api/workflows/search/"
endpoint = reverse("search:workflow-list")
reset_sequences = True
fixtures = ["backoffice/fixtures/groups.json"]

Expand Down Expand Up @@ -169,6 +169,12 @@ def test_list_anonymous(self):

self.assertEqual(response.status_code, 403)

def test_contains_decisions(self):
self.api_client.force_authenticate(user=self.admin)

response = self.api_client.get(self.endpoint)
self.assertIn("decisions", response.json()["results"][0])


class TestAuthorWorkflowPartialUpdateViewSet(BaseTransactionTestCase):
endpoint_base_url = "/api/workflow-update"
Expand Down

0 comments on commit 833bc1e

Please sign in to comment.