我正在尝试使用mock和@patch装饰器为Python应用程序构建测试。给定以下目录结构:|--mypackage||--mymodule|||--__init__.py||\--somefile.py|\--myothermodule||--tests|||--__init__.py||\--test_func_to_test.py|\--__init__.py\--__init__.py文件内容在哪里:#mypackage/mymodule/somefile.pydefsome_function():return'A'#mypackage/myothermodule/__init