我刚刚开始使用Django,而且我真的想进入测试我应该做的所有事情的习惯。我现在的大多数类都是基于类的通用视图,例如列表视图。这是一个这样的:
class CellView(ListView):
"""
Class that determines list view for all Cells
Inherits from Django GenericView ListView Class
Attributes:
model: Overrided attribute that indicates that
cell is the model to be displayed
template_name: Overrided attribute that indicates
which html template to use
queryset: Overrided attribute that indicates a python
queryset of all cell objects to be displated
context_object_name: Overrided attribute that indicates
string to name the context object in the template
"""
model = Cell
template_name = "CellView.html"
query_set = Cell.objects.all()
context_object_name = "Cells"
我没有任何自定义方法,我在这里所做的只是定义属性。我应该在这里测试这段代码吗?或者这真的算作Django处理的东西,我应该相信它会起作用吗?如果我应该测试它,我应该具体测试什么?
答案 0 :(得分:1)
我说这仍然值得测试,但可能在功能测试的水平上。也就是说,在您的测试中创建一些数据,然后使用测试客户端请求相关页面并断言它包含您期望的文本。