"""Fixtures for profile unit tests."""

import pytest

from tests.conftest_factory import FakeConnection, FakePool


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