Fix filesystem folder creation

This commit is contained in:
Unrud 2020-01-15 06:38:32 +01:00
parent 41a91f7da1
commit 1bd93a2947
6 changed files with 10 additions and 9 deletions

View file

@ -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({