我想了解如何@patch
从导入的模块中获取功能。
这是我到目前为止的地方。
应用程序/模拟.py:
from app.my_module import get_user_name
def test_method():
return get_user_name()
if __name__ == "__main__":
print "Starting Program..."
test_method()
应用程序/my_module/__init__.py:
def get_user_name():
return "Unmocked User"
测试/模拟测试.py:
import unittest
from app.mocking import test_method
def mock_get_user():
return "Mocked This Silly"
@patch('app.my_module.get_user_name')
class MockingTestTestCase(unittest.TestCase):
def test_mock_stubs(self, mock_method):
mock_method.return_value = 'Mocked This Silly')
ret = test_method()
self.assertEqual(ret, 'Mocked This Silly')
if __name__ == '__main__':
unittest.main()
这不像我预期的那样工作。“已修补”模块仅返回get_user_name
. 如何模拟要导入到正在测试的命名空间的其他包中的方法?