We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade7f02 commit 6a0dc0fCopy full SHA for 6a0dc0f
tests/tests_rest_cases.py
@@ -228,3 +228,9 @@ def test_update_case_should_allow_to_update_reviewer(self):
228
user = self._subject.create_dummy_user()
229
response = self._subject.update(f'/api/v2/cases/{identifier}', {'reviewer_id': user.get_identifier()}).json()
230
self.assertEqual(user.get_identifier(), response['reviewer_id'])
231
+
232
+ def test_update_case_should_allow_to_update_tags(self):
233
+ identifier = self._subject.create_dummy_case()
234
+ response = self._subject.update(f'/api/v2/cases/{identifier}', {'case_tags': 'tag1,tag2'}).json()
235
+ self.assertEqual('tag1,tag2', response['case_tags'])
236
0 commit comments