vdirsyncer/tests/storage/test_memory.py
Markus Unterwaditzer 736b7359a6 Flake8
2014-03-17 19:33:55 +01:00

26 lines
604 B
Python

# -*- coding: utf-8 -*-
'''
vdirsyncer.tests.storage.test_memory
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer
:license: MIT, see LICENSE for more details.
'''
from vdirsyncer.storage.memory import MemoryStorage
from . import StorageTests
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_collection_arg(self):
'''This test doesn't make any sense here.'''