- 论坛徽章:
- 0
|
django 支持两种方式的测试: doctest 和unnittest。
下面是关于如何使django执行测试的 原文:
Once you've written tests, run them using your project's manage.py utility:
By default, this will run every test in every application in INSTALLED_APPS. If you only want to run tests for a particular application, add the application name to the command line. For example, if your INSTALLED_APPS contains 'myproject.polls' and 'myproject.animals', you can run the myproject.animals unit tests alone with this command:
- $ ./manage.py test animals
复制代码
Note that we used animals, not myproject.animals.
- $ ./manage.py test animals. AnimalTestCase
复制代码
其中AnimalTestCase是使用unittest编写的。
详细描述 参考: django 的官方网站 的 关于 testing 主题的链接。
http://docs.djangoproject.com/en ... ting/#running-tests |
|