vdirsyncer/tests/storage/test_memory.py
2014-12-01 00:11:23 +01:00

24 lines
468 B
Python

# -*- coding: utf-8 -*-
'''
tests.storage.test_memory
~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer & contributors
:license: MIT, see LICENSE for more details.
'''
import pytest
from vdirsyncer.storage.memory import MemoryStorage
from . import BaseStorageTests
class TestMemoryStorage(BaseStorageTests):
storage_class = MemoryStorage
@pytest.fixture
def get_storage_args(self):
return lambda **kw: kw