mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
10 lines
173 B
Python
10 lines
173 B
Python
|
"""Container schema fixtures."""
|
||
|
|
||
|
from dependency_injector import containers
|
||
|
from pytest import fixture
|
||
|
|
||
|
|
||
|
@fixture
|
||
|
def container():
|
||
|
return containers.DynamicContainer()
|