vdirsyncer/tests/storage/dav/test_carddav.py
2021-05-06 19:28:54 +02:00

12 lines
277 B
Python

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