我有一个在脚本开头执行此操作的 python 脚本:
def initialize(module_name):
return importlib.import_module(module_name) # import module from string
我想编写一个“模拟”模块名称的测试,如下所示:
def test():
# assemble module at run time
module_obj = {'name': Object, 'another_name': AnotherObject}
# inject to the "import system"
inject_mock_module('mymodule', module_obj)
# assert that the import went correctly
assert my_module_mock == initialize('mymodule')
我该怎么做呢?首先,具体来说,我如何创建module_obj
以及如何定义inject_mock_module
?这需要在 2.7+ 和 3.3+ 中都有效