[Zodb-checkins] CVS: StandaloneZODB/ZEO/tests - testZEO.py:1.16.4.2
Jeremy Hylton
jeremy@zope.com
Tue, 15 Jan 2002 10:40:20 -0500
Update of /cvs-repository/StandaloneZODB/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv8664
Modified Files:
Tag: Standby-branch
testZEO.py
Log Message:
Track changes for ZEO-ZRPC-Dev branch.
(XXX I might stop work on that branch and just work on this branch.
It's too confusing to have two branches for the same thing.)
=== StandaloneZODB/ZEO/tests/testZEO.py 1.16.4.1 => 1.16.4.2 ===
def setUp(self):
- """Start a ZEO server using a Unix domain socket
-
- The ZEO server uses the storage object returned by the
- getStorage() method.
- """
+ self.__super_setUp()
self.running = 1
client, exit, pid = forker.start_zeo(self.getStorage())
self._pid = pid
self._server = exit
self._storage = PackWaitWrapper(client)
client.registerDB(DummyDB(), None)
- self.__super_setUp()
def tearDown(self):
- """Try to cause the tests to halt"""
self.running = 0
self._storage.close()
self._server.close()