[Python-checkins] r57454 - sandbox/trunk/import_in_py/zipimport_/tests.py
brett.cannon
python-checkins at python.org
Sat Aug 25 06:29:02 CEST 2007
Author: brett.cannon
Date: Sat Aug 25 06:29:02 2007
New Revision: 57454
Modified:
sandbox/trunk/import_in_py/zipimport_/tests.py
Log:
Add some more test stubs.
Modified: sandbox/trunk/import_in_py/zipimport_/tests.py
==============================================================================
--- sandbox/trunk/import_in_py/zipimport_/tests.py (original)
+++ sandbox/trunk/import_in_py/zipimport_/tests.py Sat Aug 25 06:29:02 2007
@@ -168,7 +168,13 @@
"""Test zipimporter.get_code()."""
- def test_get_code(self):
+ def test_mod_time(self):
+ raise NotImplementedError
+
+ def test_top_level(self):
+ raise NotImplementedError
+
+ def test_pkg(self):
raise NotImplementedError
@@ -176,9 +182,6 @@
"""Test zipimporter.load_module()."""
- def test_mod_time(self):
- raise NotImplementedError
-
def test_top_level(self):
raise NotImplementedError
More information about the Python-checkins
mailing list