mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-06-28 05:19:33 +00:00
Extend testsuite for DAV metadata
This commit is contained in:
parent
eb1485d99f
commit
1c24abd4db
1 changed files with 5 additions and 2 deletions
|
|
@ -263,5 +263,8 @@ class StorageTests(object):
|
|||
except exceptions.UnsupportedMetadataError:
|
||||
pass
|
||||
|
||||
s.set_meta('displayname', u'hello world')
|
||||
assert s.get_meta('displayname') == u'hello world'
|
||||
for x in (u'hello world', u'hello wörld'):
|
||||
s.set_meta('displayname', x)
|
||||
rv = s.get_meta('displayname')
|
||||
assert rv == x
|
||||
assert isinstance(rv, text_type)
|
||||
|
|
|
|||
Loading…
Reference in a new issue