Example #1
0
def test_delete_not_found_comment(app):
    with app.test_request_context(
        "commentview",
        data = created_comment
    ):
        commentview = CommentView()
        commentview.model = FakeComment
    with pytest.raises(NotFound):
        commentview.delete()
def test_delete_found_comment(app):
    with app.test_request_context("commentview", data={"comment_id": 5}):
        commentview = CommentView()
        commentview.model = FakeComment
        result = commentview.delete()
    assert result[
        1] == HTTPStatus.NO_CONTENT, "Wrong status returned from CommentView"