mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 09:57:37 +03:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			20 lines
		
	
	
		
			608 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			608 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from dependency_injector import providers
 | 
						|
 | 
						|
 | 
						|
# Test 1: to check the getattr
 | 
						|
config1 = providers.Configuration()
 | 
						|
provider1 = providers.Factory(dict, a=config1.a)
 | 
						|
 | 
						|
# Test 2: to check the from_*() method
 | 
						|
config2 = providers.Configuration()
 | 
						|
config2.from_dict({})
 | 
						|
config2.from_ini('config.ini')
 | 
						|
config2.from_yaml('config.yml')
 | 
						|
config2.from_env('ENV', 'default')
 | 
						|
 | 
						|
# Test 3: to check as_*() methods
 | 
						|
config3 = providers.Configuration()
 | 
						|
int3: providers.Callable[int] = config3.option.as_int()
 | 
						|
float3: providers.Callable[float] = config3.option.as_float()
 | 
						|
int3_custom: providers.Callable[int] = config3.option.as_(int)
 |