Files
cleveragents-core/features/mocks/__init__.py

11 lines
330 B
Python

"""Mock implementations for testing.
This package contains mock implementations used only during testing.
Following the mock placement rule, all mocks must exist only in the
features/ directory and never in production code (implementation_plan.md).
"""
from .mock_ai_provider import MockAIProvider
__all__ = ["MockAIProvider"]