Django TestCase 的断言方法列表在哪里?
我用谷歌搜索找到了断言方法列表。但看起来这个文档隐藏得很好。有谁知道它在哪里吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我用谷歌搜索找到了断言方法列表。但看起来这个文档隐藏得很好。有谁知道它在哪里吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
它只是使用标准的 python 单元测试, http://docs.python.org/library /unittest.html#assert-methods,使用 Django 特定的断言进行扩展,可以在 这里。
It just uses the standard python unittest, http://docs.python.org/library/unittest.html#assert-methods, extended with Django-specific asserts which can be found here.
对我有用的链接是 https://docs.djangoproject.com /en/dev/topics/testing/overview/#assertions
the link that worked for me is https://docs.djangoproject.com/en/dev/topics/testing/overview/#assertions
django 自定义方法位于 https://docs.djangoproject.com/en/dev/topics/testing /#断言
The django custom methods are at https://docs.djangoproject.com/en/dev/topics/testing/#assertions