summaryrefslogtreecommitdiff
path: root/fs/multifs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-08-19 13:26:20 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-08-19 13:26:20 +0000
commitac16d0115d65d84f0008cb2a223f406959fbd31a (patch)
tree5197885a33baad518e337ad3fc137ab0e145d83a /fs/multifs.py
parent6ae9b15587205e5a6676ea9a1c3d372b43770a04 (diff)
downloadpyfilesystem-ac16d0115d65d84f0008cb2a223f406959fbd31a.tar.gz
Fleshing out the test suite. Also changed fs.mkdir to fs.makedir, for sake of consistancy...
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@34 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/multifs.py')
-rw-r--r--fs/multifs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/multifs.py b/fs/multifs.py
index da607bd..549581d 100644
--- a/fs/multifs.py
+++ b/fs/multifs.py
@@ -140,9 +140,9 @@ if __name__ == "__main__":
import memoryfs
mem_fs = memoryfs.MemoryFS()
- mem_fs.mkdir('projects/test2', recursive=True)
- mem_fs.mkdir('projects/A', recursive=True)
- mem_fs.mkdir('projects/A/B', recursive=True)
+ mem_fs.makedir('projects/test2', recursive=True)
+ mem_fs.makedir('projects/A', recursive=True)
+ mem_fs.makedir('projects/A/B', recursive=True)
mem_fs.open("projects/test2/readme.txt", 'w').write("Hello, World!")