Newer
Older
navi-1 / tests / unit / profiles / conftest.py
"""Fixtures for profile unit tests."""

import pytest

from tests.conftest_factory import FakeConnection, FakePool


@pytest.fixture
def fake_pool():
    conn = FakeConnection()
    return FakePool(conn)