From 7f607dc29ba5ba96c3f0a0685febf227f2826985 Mon Sep 17 00:00:00 2001 From: YeonJeong Kim Date: Wed, 25 Oct 2023 17:53:43 +0900 Subject: [PATCH] :white_check_mark: Add tentative test functions to trigger CD --- backend/user/test_views.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/user/test_views.py b/backend/user/test_views.py index ca8e6361..3100f41d 100644 --- a/backend/user/test_views.py +++ b/backend/user/test_views.py @@ -29,3 +29,8 @@ def test_post(self): class TestUserLoginView(TestCase): def test_post(self): self.fail() + + +class TestUserLogoutView(TestCase): + def test_post(self): + self.fail()