[Zope3-checkins] CVS: Zope3/src/zope/app/rdb/tests - test_sqlcommand.py:1.2.6.1

Guido van Rossum guido@python.org
Wed, 26 Feb 2003 16:50:57 -0500


Update of /cvs-repository/Zope3/src/zope/app/rdb/tests
In directory cvs.zope.org:/tmp/cvs-serv2630

Modified Files:
      Tag: use-config-branch
	test_sqlcommand.py 
Log Message:
Add ISimpleService.


=== Zope3/src/zope/app/rdb/tests/test_sqlcommand.py 1.2 => 1.2.6.1 ===
--- Zope3/src/zope/app/rdb/tests/test_sqlcommand.py:1.2	Wed Dec 25 09:13:14 2002
+++ Zope3/src/zope/app/rdb/tests/test_sqlcommand.py	Wed Feb 26 16:50:56 2003
@@ -24,6 +24,7 @@
 from zope.app.rdb import SQLCommand
 from zope.app.tests.placelesssetup import PlacelessSetup
 from zope.component.service import serviceManager as sm
+from zope.app.interfaces.services.interfaces import ISimpleService
 
 
 # Make some fixes, so that we overcome some of the natural ZODB properties
@@ -53,7 +54,7 @@
 
 class ConnectionServiceStub:
 
-    __implements__ = IConnectionService
+    __implements__ = IConnectionService, ISimpleService
 
     def getConnection(self, name):
         return ConnectionStub()