此问题在此处已有答案:
How do you test that a Python function throws an exception?(19个答案)
21天前关闭
我有一个函数,它会引发ObjectDoesNotExist
def is_user_login(self,id):
try:
u = m.CustomUser.objects.get(id=id)
except ObjectDoesNotExist as e:
raise e
字符串
现在我正在编写测试脚本。
try:
CommonFunc.is_user_login(4)
except Exception as e:
print(e)
self.assertEqual(ObjectDoesNotExist,e)
型
这不管用。
它显示如下错误,
AssertionError: <class 'django.core.exceptions.ObjectDoesNotExist'> != DoesNotExist('CustomUser matching query does not exist.')
型
我如何AssertObjectDoesNotEqual
?
1条答案
按热度按时间k4ymrczo1#
这通常使用**
.assertRaises(…)
**[Python-doc]上下文处理器完成:字符串
然而,重新提出例外似乎没有多大意义,为什么不:
型