mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
18 lines
336 B
Python
18 lines
336 B
Python
import pytest
|
|
|
|
from vdirsyncer.storage.memory import MemoryStorage
|
|
|
|
from . import StorageTests
|
|
|
|
|
|
class TestMemoryStorage(StorageTests):
|
|
|
|
storage_class = MemoryStorage
|
|
supports_collections = False
|
|
|
|
@pytest.fixture
|
|
def get_storage_args(self):
|
|
async def inner(**args):
|
|
return args
|
|
|
|
return inner
|