Nasıl yapılacağını anlamak istiyorum @patch
İçe aktarılan bir modülden bir işlevin .
Şimdiye kadar olduğum yer burası.
Uygulamanın / mocking.py:
from app.my_module import get_user_name
def test_method():
return get_user_name()
if __name__ == "__main__":
print "Starting Program..."
test_method()
Uygulamanın / my_module / __ init__.py:
def get_user_name():
return "Unmocked User"
Test / mock-test.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()
Bu mu değil ben beklediğiniz gibi çalışır. "Yamalı" modül basitçe unmocked değerini döndürür get_user_name
. Test edilen bir ad alanına aktardığım diğer paketlerden yöntemlerle nasıl alay edebilirim?
Mock
, python3.3 + as gibi bir alay kitaplığı kullanmayı söyleyebilirimunittest.mock
.