mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-27 13:57:46 +00:00
15 lines
299 B
Python
15 lines
299 B
Python
import pytest
|
|
|
|
from dbgpt.core.interface.storage import InMemoryStorage
|
|
from dbgpt.util.serialization.json_serialization import JsonSerializer
|
|
|
|
|
|
@pytest.fixture
|
|
def serializer():
|
|
return JsonSerializer()
|
|
|
|
|
|
@pytest.fixture
|
|
def in_memory_storage(serializer):
|
|
return InMemoryStorage(serializer)
|