mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 05:37:37 +03:00
Fix filesystem folder creation
This commit is contained in:
parent
41a91f7da1
commit
1bd93a2947
6 changed files with 10 additions and 9 deletions
|
@ -1487,6 +1487,14 @@ class TestMultiFileSystem(BaseFileSystemTest, BaseRequestsMixIn):
|
|||
"""Test BaseRequests on multifilesystem."""
|
||||
storage_type = "multifilesystem"
|
||||
|
||||
def test_folder_creation(self):
|
||||
"""Verify that the folder is created."""
|
||||
folder = os.path.join(self.colpath, "subfolder")
|
||||
self.configuration.update({"storage": {"filesystem_folder": folder}},
|
||||
"test")
|
||||
self.application = Application(self.configuration)
|
||||
assert os.path.isdir(folder)
|
||||
|
||||
def test_fsync(self):
|
||||
"""Create a directory and file with syncing enabled."""
|
||||
self.configuration.update({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue