mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
2e940adb50
* Add basic setup * Add more tests for factory * Add mypy checks to CI * Add mypy checks to makefile command * Add typing for the factories * Add stub for Callable providers * Add typing module and object provider stubs * Fix typing test issue * Remove typing module * Add Delegate stub * Add stub for Dependency provider * Add stub for ExternalDependency * Add stubs for providers module functions * Add stubs for the DependenciesContainer provider * Add stub for the CallableDelegate provider * Add stubs for Coroutine providers * Add stubs for the configuration options * Add stub for the FactoryDelegate * Add stub for the FactoryAggregate provider * Add singleton stubs * Add stubs for singletons * Add stub for the List provider * Add stub for the Container provider * Add stub for the Selector provider * Add stubs for the dynamic container * Add stub for the declarative container * Add stubs for the extensions * Add types module for explicit provider typing * Set absolute import mode for the providers module and add types module test * Skip typing test for Python 3.5 * Remove coroutine test from py35 * Fix py35 tests * Add \n to the tox.ini
30 lines
834 B
Python
30 lines
834 B
Python
from typing import Tuple, Any, List
|
|
|
|
from dependency_injector import providers
|
|
|
|
|
|
# Test 1: to check the return type (class)
|
|
provider1 = providers.List(
|
|
providers.Factory(object),
|
|
providers.Factory(object),
|
|
)
|
|
var1: List[Any] = provider1()
|
|
|
|
|
|
# Test 2: to check the .args attributes
|
|
provider2 = providers.List(
|
|
providers.Factory(object),
|
|
providers.Factory(object),
|
|
)
|
|
args2: Tuple[Any] = provider2.args
|
|
|
|
# Test 5: to check the provided instance interface
|
|
provider3 = providers.List(
|
|
providers.Factory(object),
|
|
providers.Factory(object),
|
|
)
|
|
provided3: providers.ProvidedInstance = provider3.provided
|
|
attr_getter3: providers.AttributeGetter = provider3.provided.attr
|
|
item_getter3: providers.ItemGetter = provider3.provided['item']
|
|
method_caller3: providers.MethodCaller = provider3.provided.method.call(123, arg=324)
|