File size: 457 Bytes
dbb04e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """
Mock Infrastructure for MnemoCore Tests
=======================================
Provides in-memory mock implementations of QdrantStore and AsyncRedisStorage
for offline testing without external service dependencies.
Usage:
from tests.mocks import MockQdrantStore, MockAsyncRedisStorage
"""
from .mock_qdrant import MockQdrantStore
from .mock_redis import MockAsyncRedisStorage
__all__ = ["MockQdrantStore", "MockAsyncRedisStorage"]
|