mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 11:51:39 +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()
|