我正在研究django 1.2应用程序,我是一个框架的初学者,我想在应用程序https://github.com/vkhemlan/BolsaTrabajo/tree/master/bolsa_trabajo的几个文件中拆分我的测试,我该怎么做?我必须做什么配置?
问候
答案 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 *