mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Skip DAV tests on ownCloud for now
This commit is contained in:
parent
029f5e3eee
commit
b5e36ec3b2
1 changed files with 3 additions and 0 deletions
|
|
@ -146,6 +146,9 @@ class StorageTests(object):
|
||||||
assert list(s.list()) == [(href, etag)]
|
assert list(s.list()) == [(href, etag)]
|
||||||
|
|
||||||
def test_has(self, s, get_item):
|
def test_has(self, s, get_item):
|
||||||
|
if getattr(self, 'dav_server', '') == 'owncloud':
|
||||||
|
# https://github.com/owncloud/calendar/issues/935
|
||||||
|
pytest.skip('ownCloud is buggy.')
|
||||||
assert not s.has('asd')
|
assert not s.has('asd')
|
||||||
href, etag = s.upload(get_item())
|
href, etag = s.upload(get_item())
|
||||||
assert s.has(href)
|
assert s.has(href)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue