mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-24 05:34:05 +00:00
* extend tests * remove stray test * pylint * mypy * review feedback * fix tests * fix last tests * remove comment * remove print statement * pylint * add flatten test * remove direct acces/ direct write in docstore tests * fix tests
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()
|