mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-09 01:50:58 +00:00
15 lines
377 B
Python
15 lines
377 B
Python
![]() |
import pytest
|
||
|
from haystack.preview.document_stores import MemoryDocumentStore
|
||
|
|
||
|
from test.preview.document_stores._base import DocumentStoreBaseTests
|
||
|
|
||
|
|
||
|
class TestMemoryDocumentStore(DocumentStoreBaseTests):
|
||
|
"""
|
||
|
Test MemoryDocumentStore's specific features
|
||
|
"""
|
||
|
|
||
|
@pytest.fixture
|
||
|
def docstore(self) -> MemoryDocumentStore:
|
||
|
return MemoryDocumentStore()
|