Skip to content

Commit

Permalink
🧪Failing Test : 로그인API no match 실패 테스트 #3
Browse files Browse the repository at this point in the history
Related to #3
  • Loading branch information
Chestnut90 committed Nov 15, 2023
1 parent 8f59dce commit 3c392c5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/users/tests/test_signin_view.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from django.urls import reverse
from rest_framework.test import APITestCase


class SignInAPITestCase(APITestCase):
viewname = "signin"

def test_no_api_matched_fail(self):
reverse(self.viewname)

0 comments on commit 3c392c5

Please sign in to comment.