Test default sync implementation

This commit is contained in:
Unrud
2020-01-15 01:23:43 +01:00
parent 0cd95f8a39
commit 514cd2b7cd
2 changed files with 25 additions and 15 deletions

View File

@@ -18,12 +18,17 @@
"""
Custom storage backend.
Copy of filesystem storage backend for testing
Copy of multifilesystem storage backend that uses the default ``sync``
implementation for testing.
"""
from radicale.storage import multifilesystem
from radicale.storage import BaseCollection, multifilesystem
class Collection(multifilesystem.Collection):
sync = BaseCollection.sync
class Storage(multifilesystem.Storage):
pass
_collection_class = Collection