순서

  1. 회원정보 테스트코드
  2. article의 테스트코드
  3. setUpTestData
  4. 파이썬
    1. 클래스메소드
    2. 스태틱메소드
  5. article 테스트코드2

강의

drf에서 테스트코드 작성하기 2부(게시글) - YouTube

가이드

세부 테스트 돌리는 법

# Run the specified module
python3 manage.py test catalog.tests

# Run the specified module
python3 manage.py test catalog.tests.test_models

# Run the specified class
python3 manage.py test catalog.tests.test_models.YourTestClass

# Run the specified method
python3 manage.py test catalog.tests.test_models.YourTestClass.test_one_plus_one_equals_two

로그인 인증 관련하여 작성할 수 있는 테스트들

django-rest-framework-jwt/test_views.py at master · jpadilla/django-rest-framework-jwt (github.com)

모델을 테스트 하는 경우