mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
29 lines
695 B
Python
29 lines
695 B
Python
|
|
# -*- coding: utf-8 -*-
|
|
'''
|
|
tests.storage.test_memory
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:copyright: (c) 2014 Markus Unterwaditzer & contributors
|
|
:license: MIT, see LICENSE for more details.
|
|
'''
|
|
|
|
from . import StorageTests
|
|
from vdirsyncer.storage.memory import MemoryStorage
|
|
|
|
|
|
class TestMemoryStorage(StorageTests):
|
|
|
|
storage_class = MemoryStorage
|
|
|
|
def get_storage_args(self, **kwargs):
|
|
return kwargs
|
|
|
|
def test_discover(self):
|
|
'''This test doesn't make any sense here.'''
|
|
|
|
def test_discover_collection_arg(self):
|
|
'''This test doesn't make any sense here.'''
|
|
|
|
def test_collection_arg(self):
|
|
'''This test doesn't make any sense here.'''
|