Django shell模式 (交互式终端会话),可以将视图层(views)以编程的形式进行测试。
测试可以做的事情:
在项目路径打开cmd 输入以下命令,进入shell模式;
E:\learn\pydj\guest>python manage.py shell
Python 2.7.15 (v2.7.15:ca079a3ea3, Apr 30 2018, 16:30:26) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
简单应用,测试登录是否成功:
>>> from django.test.utils import setup_test_environment
>>> setup_test_environment() #初始化测试环境
>>> from django.test import Client #引用Client类可以使用其get,post方法
>>> c=Client()
>>> response = c.get('/index/') #该项目的登录url
>>> response.status_code #返回状态码
200 #成功状态码
>>>