python-dependency-injector/examples/providers/callable_delegation.py
2015-08-31 16:31:38 +03:00

17 lines
519 B
Python

"""`Callable` providers delegation example."""
import sys
from dependency_injector.providers import Callable
from dependency_injector.providers import Delegate
# Creating some callable provider and few delegates of it:
callable_provider = Callable(sys.exit)
callable_provider_delegate1 = callable_provider.delegate()
callable_provider_delegate2 = Delegate(callable_provider)
# Making some asserts:
assert callable_provider_delegate1() is callable_provider
assert callable_provider_delegate2() is callable_provider