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
commit3aa1997b291e674ec31275aa48db3fc70059cb71 (patch)
tree5197885a33baad518e337ad3fc137ab0e145d83a /fs/multifs.py
parentf24a6884a6bc1b6d12f6c7650a8732cdefae2097 (diff)
downloadpyfilesystem-git-3aa1997b291e674ec31275aa48db3fc70059cb71.tar.gz
Fleshing out the test suite. Also changed fs.mkdir to fs.makedir, for sake of consistancy...
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!")