mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 18:13:56 +03:00
13 lines
291 B
Python
13 lines
291 B
Python
"""TBD."""
|
|
|
|
from mock import Mock
|
|
|
|
import main
|
|
import api
|
|
|
|
# Mock ApiClient for testing:
|
|
with main.api_client.override(Mock(api.ApiClient)) as api_client_mock:
|
|
user = main.user_factory('test')
|
|
user.register()
|
|
api_client_mock().call.assert_called_with('register', {'id': 'test'})
|