"""Pytest fixtures for unit tests.""" from typing import Any import pytest from src.constants import general as constants @pytest.fixture def test_input() -> dict[str, Any]: """Return a sample input event.""" return { 'vendor_name': 'foo', 'source': 'event.gdaApproval', 'brand': constants.ORCHARD_BRAND, 'email': 'foo@xyz.com', 'service_tier_uuid': constants.GDA_SERVICE_TIER_UUID }