python-dependency-injector/tests/unit/wiring/package/subpackage/submodule.py
2020-09-18 16:56:05 -04:00

9 lines
201 B
Python

from dependency_injector.wiring import Provide
from ...container import Container
from ...service import Service
def test_function(service: Service = Provide[Container.service]):
return service