From 54d0489ca2e34bc5ba54bfd4a2b80158c71497d4 Mon Sep 17 00:00:00 2001 From: Klaus Date: Sat, 13 Jun 2026 22:28:43 +0900 Subject: [PATCH] =?UTF-8?q?test(creator):=20=EC=B1=84=EB=84=90=20=ED=99=88?= =?UTF-8?q?=20API=20=EC=9D=91=EB=8B=B5=20=EA=B3=84=EC=95=BD=EC=9D=84=20?= =?UTF-8?q?=EB=B3=B4=EA=B0=95=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../adapter/in/web/CreatorChannelHomeControllerTest.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt b/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt index 0215593b..22d58f5e 100644 --- a/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt +++ b/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt @@ -123,6 +123,10 @@ class CreatorChannelHomeControllerTest @Autowired constructor( .andExpect(jsonPath("$.data.latestAudioContent.isFirstContent").value(true)) .andExpect(jsonPath("$.data.latestAudioContent.isOriginalSeries").value(true)) .andExpect(jsonPath("$.data.currentLive.isAdult").value(true)) + .andExpect(jsonPath("$.data.schedules[0].isAdult").doesNotExist()) + .andExpect(jsonPath("$.data.channelDonations[0].donationId").doesNotExist()) + .andExpect(jsonPath("$.data.channelDonations[0].memberId").doesNotExist()) + .andExpect(jsonPath("$.data.channelDonations[0].isSecret").doesNotExist()) .andExpect(jsonPath("$.data.series[0].isNew").value(true)) .andExpect(jsonPath("$.data.series[0].isOriginal").value(true))