文件名称:django-test-response:更好的TestCase以获得测试响应
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-26 10:59:50
Python
django-test-response 更好的TestCase以获得测试响应。 替换您的代码: class FooTestCase(TestCase): def test_status_code(self): url = reverse('view-path', args=(10,)) response = self.client.get(url) self.assertEqual(response.status_code, 200) 有了这个: class FooTestCase(ResponseTestCase): def test_status_code(self): response = self.get(('view-path', args=(10,))) self.asse
【文件预览】:
django-test-response-master
----.gitignore(702B)
----README.md(487B)
----LICENSE(1KB)
----test_response()
--------testcases.py(4KB)