mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-31 09:55:55 +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)]
|
||||
|
||||
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')
|
||||
href, etag = s.upload(get_item())
|
||||
assert s.has(href)
|
||||
|
|
|
|||
Loading…
Reference in a new issue