This commit is contained in:
Markus Unterwaditzer 2014-03-17 19:33:55 +01:00
parent 17f9ccc895
commit 736b7359a6
6 changed files with 0 additions and 15 deletions

View file

@ -8,15 +8,7 @@
:license: MIT, see LICENSE for more details.
'''
import sys
import os
import urlparse
import tempfile
import shutil
import mock
from werkzeug.test import Client
from werkzeug.wrappers import BaseResponse as WerkzeugResponse
from .. import StorageTests
import vdirsyncer.exceptions as exceptions
@ -39,4 +31,3 @@ class DavStorageTests(ServerMixin, StorageTests):
except exceptions.Error:
pass
assert not list(s.list())

View file

@ -22,7 +22,6 @@ import mock
from werkzeug.test import Client
from werkzeug.wrappers import BaseResponse as WerkzeugResponse
from .. import StorageTests
import vdirsyncer.exceptions as exceptions
from vdirsyncer.storage.base import Item

View file

@ -8,7 +8,6 @@
:license: MIT, see LICENSE for more details.
'''
from unittest import TestCase
from vdirsyncer.storage.dav.caldav import CaldavStorage
from . import DavStorageTests

View file

@ -8,8 +8,6 @@
:license: MIT, see LICENSE for more details.
'''
from unittest import TestCase
from vdirsyncer.storage.dav.carddav import CarddavStorage
from . import DavStorageTests

View file

@ -8,7 +8,6 @@
'''
import mock
from unittest import TestCase
from .. import assert_item_equals
from textwrap import dedent
from vdirsyncer.storage.http import HttpStorage, Item

View file

@ -8,7 +8,6 @@
:license: MIT, see LICENSE for more details.
'''
from unittest import TestCase
from vdirsyncer.storage.memory import MemoryStorage
from . import StorageTests