mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-03 10:25:51 +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
|