mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-27 09:15:50 +00:00
15 lines
303 B
Python
15 lines
303 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
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
|