python 自定义断言
Posted xiaozeng6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 自定义断言相关的知识,希望对你有一定的参考价值。
#判断返回结果是否包含预期结果 def is_contain(self,str_one,str_two):#判断str_one是否包含于str_two flag=None try: str_one.index(str_two)>1 except: print(‘PASS!‘) flag=False return flag #判断两个字典是否相等 def is_equal_dict(self,dict_one,dict_two):#判断两个字典值是否相等 if isinstance(dict_one,dict_two): print(‘haha‘) dict_one =json.loads(dict_one)#str转成dict print(dict_two) else: print(‘oo‘) print(operator.eq(dict_one,dict_two))
以上是关于python 自定义断言的主要内容,如果未能解决你的问题,请参考以下文章