(app, base_url="http://test", **kw)
| 40 | |
| 41 | @asynccontextmanager |
| 42 | async def client_manager(app, base_url="http://test", **kw) -> ClientManagerType: |
| 43 | async with LifespanManager(app): |
| 44 | transport = ASGITransport(app=app) |
| 45 | async with AsyncClient(transport=transport, base_url=base_url, **kw) as c: |
| 46 | yield c |
| 47 | |
| 48 | |
| 49 | @pytest.fixture(scope="module") |
no outgoing calls
no test coverage detected
searching dependent graphs…