mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
21 lines
434 B
Python
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
|