mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
c964253204
* Rename container tests * Add implementation + tests * Update changelog * Add examples and docs
22 lines
497 B
Python
22 lines
497 B
Python
"""Container reset singletons example."""
|
|
|
|
from dependency_injector import containers, providers
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
|
|
|
service1 = providers.Singleton(object)
|
|
service2 = providers.Singleton(object)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
container = Container()
|
|
|
|
service1 = container.service1()
|
|
service2 = container.service2()
|
|
|
|
container.reset_singletons()
|
|
|
|
assert service1 is not container.service1()
|
|
assert service2 is not container.service2()
|