我一直在尝试模拟一个类方法,但到目前为止我还没有成功并且找不到合适的文档,你们中的任何人都可以展示我如何为下面的代码编写模拟测试
class abc:
def classmethod:
return "message from class methos"
from one.py import abc
client = abc()
def function:
res = abc.classmethos() # how to mock so abc.classmethod() returns "hello" instead of "message from class method"
return res