在几个文件中拆分django app测试

时间:2011-05-28 17:07:03

标签: django unit-testing file split

我正在研究django 1.2应用程序,我是一个框架的初学者,我想在应用程序https://github.com/vkhemlan/BolsaTrabajo/tree/master/bolsa_trabajo的几个文件中拆分我的测试,我该怎么做?我必须做什么配置?

问候

1 个答案:

答案 0 :(得分:9)

这是测试django应用程序的非常好的指南: A Guide to Testing in Django

example app on github表单视图模型的测试拆分为单独的文件,因此它可能是一个不错的选择你的例子。

请注意每个测试模块如何在__init__.py中导入:

from polls.tests.forms import *
from polls.tests.models import *
from polls.tests.views import *