From d1d96bda5f1c6991c8ea61dca8f261e5b74b5ab6 Mon Sep 17 00:00:00 2001 From: Nejc Habjan Date: Fri, 1 Apr 2022 11:10:30 +0200 Subject: feat(api): re-add topic delete endpoint This reverts commit e3035a799a484f8d6c460f57e57d4b59217cd6de. --- tests/functional/api/test_topics.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/functional/api') diff --git a/tests/functional/api/test_topics.py b/tests/functional/api/test_topics.py index dea457c..7ad71a5 100644 --- a/tests/functional/api/test_topics.py +++ b/tests/functional/api/test_topics.py @@ -16,3 +16,6 @@ def test_topics(gl): updated_topic = gl.topics.get(topic.id) assert updated_topic.description == topic.description + + topic.delete() + assert not gl.topics.list() -- cgit v1.2.1