def test_get_not_found_comment(app): with app.test_request_context( "commentview", data = {"comment_id" : 100} ): commentview = CommentView() commentview.model = FakeComment with pytest.raises(NotFound): commentview.get()
def test_get_found_comment(app): with app.test_request_context("commentview", data={"comment_id": 5}): commentview = CommentView() commentview.model = FakeComment result = commentview.get() assert result[ 0] == found_comment, "Wrong comment returned from CommentView" assert result[1] == HTTPStatus.OK, "Wrong status returned from CommentView"