본문 바로가기

웹/Django

테스트 하기

docs.djangoproject.com/ko/3.1/intro/tutorial05/

 

첫 번째 장고 앱 작성하기, part 5 | Django 문서 | Django

Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate

docs.djangoproject.com

를 참고하였다.

 

쉘 환경에서 테스트 실행

python manage.py test polls

 

뷰 테스트

>>>from django.test.utils import setup_test_environment

>>> setup_test_environment()

>>> from django.test import Client

>>> client = Client()

>>> response = client.get('/') Not Found: /

>>> from django.urls import reverse

>>> response = client.get(reverse('polls:index'))

>>> response.status_code  

>>> response.content

>>> response.context['latest_question_list']

' > Django' 카테고리의 다른 글

django 1. 개발환경 구축하기  (0) 2021.05.10
djando 0. 웹 클라이언트 라이브러리  (0) 2021.05.09
배포시 주의점  (0) 2020.12.21
장고 프로젝트 순서2 - 뷰  (0) 2020.12.14
장고 프로젝트 순서 기본1 -모델  (0) 2020.12.14