vdirsyncer/tests/storage/dav/test_carddav.py

15 lines
314 B
Python

from __future__ import annotations
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