Skip to content

Commit c5200f4

Browse files
committed
✅ test: 태크 조회 기능 request 테스트 구현
1 parent 2539d80 commit c5200f4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

http/test.http

+3
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,6 @@ Content-Type: application/json
133133
"name": "태그 name test2"
134134
}
135135

136+
### 태그 조회 (todo 테스트 필요)
137+
GET http://localhost:8080/api/v1/tags/1
138+
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxIiwiZW1haWwiOiJzcG9udXNAZ21haWwuY29tIiwiYXV0aCI6IlNUVURFTlQiLCJpYXQiOjE3MDU4MzQ2MTksImV4cCI6MTcwNjgzNDYxOX0.XO8ydia0RB1eVGXrA7nBeP5AND2Ui4ivK26DEldZLnE

src/main/resources/data.sql

+4
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ VALUES ('무신사 스폰서십',
4040
'무신사 스폰서십을 진행할 대학교 학생회를 모집합니다.',
4141
'POSTED',
4242
0, 1);
43+
44+
INSERT INTO tag (organization_id, tag_name)
45+
VALUES (1, '#무신사'),
46+
(1, '#스폰서쉽');

0 commit comments

Comments
 (0)