()
| 36 | |
| 37 | @pytest.fixture |
| 38 | async def session_pool() -> AsyncGenerator[SessionPool, None]: |
| 39 | async with SessionPool(max_pool_size=MAX_POOL_SIZE, persistence_enabled=False) as sp: |
| 40 | yield sp |
| 41 | |
| 42 | |
| 43 | async def test_session_pool_init(session_pool: SessionPool) -> None: |
nothing calls this directly
no test coverage detected