mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Finalizes testing of the delete comment
This commit is contained in:
parent
6d5d308d6c
commit
67bb140eef
@ -1459,13 +1459,14 @@ class TestDocumentApi(DirectoriesMixin, APITestCase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
response = self.client.delete(
|
response = self.client.delete(
|
||||||
f"/api/documents/{doc.pk}/comments/",
|
f"/api/documents/{doc.pk}/comments/?id={comment.pk}",
|
||||||
data={"id": f"{comment.pk}"},
|
|
||||||
format="json",
|
format="json",
|
||||||
)
|
)
|
||||||
|
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
|
self.assertEqual(len(Comment.objects.all()), 0)
|
||||||
|
|
||||||
def test_get_comments_no_doc(self):
|
def test_get_comments_no_doc(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user