mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
17 lines
313 B
Python
17 lines
313 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
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):
|
|
return lambda **kw: kw
|