vdirsyncer/tests/storage/dav/test_carddav.py
2020-06-08 18:40:33 +02:00

13 lines
278 B
Python

import pytest
from vdirsyncer.storage.dav import CardDAVStorage
from . import DAVStorageTests
class TestCardDAVStorage(DAVStorageTests):
storage_class = CardDAVStorage
@pytest.fixture(params=['VCARD'])
def item_type(self, request):
return request.param