We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e082183 commit 2740dd8Copy full SHA for 2740dd8
1 file changed
tests/extmod/vfs_fat_ramdisk.py
@@ -68,3 +68,6 @@ def ioctl(self, op, arg):
68
f.close()
69
70
assert vfs.listdir("foo_dir") == ['file-in-dir.txt']
71
+
72
+vfs.rename("foo_dir/file-in-dir.txt", "moved-to-root.txt")
73
+assert vfs.listdir() == ['foo_dir', 'moved-to-root.txt']
0 commit comments