vdirsyncer/tests/storage/test_memory.py
2014-07-06 20:28:48 +02:00

21 lines
434 B
Python

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