vdirsyncer/tests/storage/test_memory.py
Markus Unterwaditzer 5c91f48f0e Move tests outside package
These tests will get so big we won't want to distribute them to users
2014-03-02 19:21:15 +01:00

19 lines
451 B
Python

# -*- coding: utf-8 -*-
'''
vdirsyncer.tests.storage.test_memory
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer
:license: MIT, see LICENSE for more details.
'''
from unittest import TestCase
from vdirsyncer.storage.memory import MemoryStorage
from . import StorageTests
class MemoryStorageTests(TestCase, StorageTests):
def _get_storage(self, **kwargs):
return MemoryStorage(**kwargs)