[Zope3-checkins] CVS: Zope3/lib/python/Persistence/tests - testModule.py:1.26
Jeremy Hylton
jeremy@zope.com
Mon, 7 Oct 2002 14:41:12 -0400
Update of /cvs-repository/Zope3/lib/python/Persistence/tests
In directory cvs.zope.org:/tmp/cvs-serv23871
Modified Files:
testModule.py
Log Message:
Remove commented out test.
=== Zope3/lib/python/Persistence/tests/testModule.py 1.25 => 1.26 ===
--- Zope3/lib/python/Persistence/tests/testModule.py:1.25 Wed Oct 2 15:28:43 2002
+++ Zope3/lib/python/Persistence/tests/testModule.py Mon Oct 7 14:41:11 2002
@@ -375,21 +375,6 @@
self.open()
reload(foo)
-## def testToplevelClassReload(self):
-## # XXX This test fails because you can't load the root if there
-## # is a persistent module in it.
-## self.importer.module_from_source("foo", src)
-## get_transaction().commit()
-## import foo
-## obj = foo.Foo()
-## obj.m()
-## self.root["m"] = obj
-## get_transaction().commit()
-## self.close()
-## foo._p_deactivate()
-## self.open()
-## reload(foo)
-
def test_suite():
s = unittest.TestSuite()
for klass in TestModule,: # TestModuleReload: