标签: python django unit-testing django-testing xlwt
我使用xlwt将一些数据导出到django中的客户端。现在我正在测试该功能,因此我想验证响应中的数据是否与预期结果匹配。
xlwt
如何从响应对象中读取excel数据。添加了Excel数据以响应w.save(response)之类的内容以及如何使用response=self.client.get(reverse("create"))中的响应检索此数据?
w.save(response)
response=self.client.get(reverse("create"))