diff --git a/src/test/http/comment/place_review_comment.http b/src/test/http/comment/place_review_comment.http new file mode 100644 index 00000000..739ac2f3 --- /dev/null +++ b/src/test/http/comment/place_review_comment.http @@ -0,0 +1,20 @@ +### 여행지 리뷰 댓글 달기 +POST localhost:8080/v1/places/reviews/1/comments +Content-Type: application/json + +{ + "content": "첫 댓글입니다 ㅎㅎ" +} + + +### 여행지 리뷰 대댓글 달기 +POST localhost:8080/v1/places/reviews/comments/1/reply-comments +Content-Type: application/json + +{ + "content": "대댓글 입니다! ㅎㅎ" +} + + +### 여행지 리뷰 댓글 / 대댓글 삭제 +DELETE localhost:8080/v1/places/reviews/comments/1 \ No newline at end of file