summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgcode@loowis.durge.org <gcode@loowis.durge.org@67cdc799-7952-0410-af00-57a81ceafa0f>2012-08-11 20:58:36 +0000
committergcode@loowis.durge.org <gcode@loowis.durge.org@67cdc799-7952-0410-af00-57a81ceafa0f>2012-08-11 20:58:36 +0000
commit3357e465d9f038f94d9549ee5beb13d0f22bc681 (patch)
treec38ac58eb7befe1bf7fa6301c0ac546a7ecf8cf4
parentb16b3e80824270c2203a082fb42fc3dd51cd4aee (diff)
downloadpyfilesystem-3357e465d9f038f94d9549ee5beb13d0f22bc681.tar.gz
Rename test classes from *ZipFS to *ArchiveFS
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@800 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/tests/test_archivefs.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/tests/test_archivefs.py b/fs/tests/test_archivefs.py
index e1d9fbb..217990f 100644
--- a/fs/tests/test_archivefs.py
+++ b/fs/tests/test_archivefs.py
@@ -1,6 +1,6 @@
"""
- fs.tests.test_zipfs: testcases for the ZipFS class
+ fs.tests.test_archivefs: testcases for the ArchiveFS class
"""
@@ -17,7 +17,7 @@ from fs.contrib import archivefs
from six import PY3, b
-class TestReadZipFS(unittest.TestCase):
+class TestReadArchiveFS(unittest.TestCase):
def setUp(self):
self.temp_filename = "".join(random.choice("abcdefghijklmnopqrstuvwxyz") for _ in range(6))+".zip"
@@ -87,7 +87,7 @@ class TestReadZipFS(unittest.TestCase):
check_listing('foo/bar', ['baz.txt'])
-class TestWriteZipFS(unittest.TestCase):
+class TestWriteArchiveFS(unittest.TestCase):
def setUp(self):
self.temp_filename = "".join(random.choice("abcdefghijklmnopqrstuvwxyz") for _ in range(6))+".zip"
@@ -133,7 +133,7 @@ class TestWriteZipFS(unittest.TestCase):
check_contents(u"\N{GREEK SMALL LETTER ALPHA}/\N{GREEK CAPITAL LETTER OMEGA}.txt", b("this is the alpha and the omega"))
-#~ class TestAppendZipFS(TestWriteZipFS):
+#~ class TestAppendArchiveFS(TestWriteArchiveFS):
#~ def setUp(self):
#~ self.temp_filename = "".join(random.choice("abcdefghijklmnopqrstuvwxyz") for _ in range(6))+".zip"
@@ -160,7 +160,7 @@ class TestWriteZipFS(unittest.TestCase):
#~ zip_fs.close()
-#~ class TestZipFSErrors(unittest.TestCase):
+#~ class TestArchiveFSErrors(unittest.TestCase):
#~ def setUp(self):
#~ self.workdir = tempfile.mkdtemp()