Django 테스트 클라이언트 사용법
1. python manage.py shell 로 쉘에 들어감 2. 아래와 같이 작성하여 template renderer 설치 >>> from django.test.utils import setup_test_environment >>> setup_test_environment() 3. 아래와와 같이 작성하여 테스트 클라이언트 클래스 가져오기 >>> from django.test import Client >>> # create an instance of the client for our use >>> client = Client() 4. 아래 명령을 이용하여 test.py 코드를 작성하지 않고도 테스트를 장고 테스트 클라이언트를 통해서 수행해 볼 수 있음 >>> # get a response from '/..