mv/rm handlers

This commit is contained in:
ed
2021-07-23 01:14:49 +02:00
parent 5b0605774c
commit 4339dbeb8d
4 changed files with 85 additions and 25 deletions

View File

@@ -57,8 +57,8 @@ class TestVFS(unittest.TestCase):
# type: (VFS, str, str) -> tuple[str, str, str]
"""helper for resolving and listing a folder"""
vn, rem = vfs.get(vpath, uname, True, False)
r1 = vn.ls(rem, uname, False)
r2 = vn.ls(rem, uname, False)
r1 = vn.ls(rem, uname, False, [[True]])
r2 = vn.ls(rem, uname, False, [[True]])
self.assertEqual(r1, r2)
fsdir, real, virt = r1