python-dependency-injector/examples/providers/callable_delegation.py
2015-09-02 18:48:11 +03:00

15 lines
458 B
Python

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