a.py
2つのクラスA
とを含むPythonファイルがありますB
。
class A(object):
def method_a(self):
return "Class A method a"
class B(object):
def method_b(self):
a = A()
print a.method_a()
をあざけることmethod_b
でクラスでユニットテストをしたいと思います。この目的のためのファイルの内容は次のとおりです。B
A
testa.py
import unittest
import mock
import a
class TestB(unittest.TestCase):
@mock.patch('a.A')
def test_method_b(self, mock_a):
mock_a.method_a.return_value = 'Mocked A'
b = a.B()
b.method_b()
if __name__ == '__main__':
unittest.main()
私Mocked A
は出力を取得することを期待しています。しかし、私が得るものは次のとおりです。
<MagicMock name='A().method_a()' id='4326621392'>
私はどこで間違っているのですか?
A()
、return_value
frommock_A
(通常のMagicMock
に、クラスのインスタンスではない、他に何も指定していないA
。がreturn_value
定義されているものに設定する必要がありmethod_a
ます。