我在python中通过使用mox知道,我们可以模拟类属性或方法的行为。 但是当我们新建一个实例或一个目标类时,它在“import ...”类中做了很多事情。 我的问题是如何模拟mox中的“import ..”类行为? 在client.py
from my.test import hander
......
在hander.py中:
def _doLotOfThings():
#do a lot of things
_doLotOfThings()
有没有办法在导入hander之前注入hander.py的_doLotOfThings()让它什么都不做?
感谢。