标签: mocking python-unittest magicmock
我想测试一个使用set()的函数。我想让set在初始化本身时返回特定的set()。
set()
执行@patch("module_path.set")无效。
@patch("module_path.set")