0
我按照說明How to mock an import從進口模擬進口
但我沒有成功。
我有以下設置:
Class A
進口Class B
,並Class B
進口Class C
。
Class C
是我想模擬的模塊。
test.py
:
import sys
from mock import Mock
sys.modules['C'] = Mock()
import A
print A.C.__name__ // this returns:
AttributeError: 'module' object has no attribute 'C'