[Zope-CVS] CVS: Packages3/workflow/stateful/tests - test_instance.py:1.8
Ulrich Eck
ueck@net-labs.de
Wed, 19 Mar 2003 12:01:14 -0500
Update of /cvs-repository/Packages3/workflow/stateful/tests
In directory cvs.zope.org:/tmp/cvs-serv20767/stateful/tests
Modified Files:
test_instance.py
Log Message:
checkpoint (updates for use-config/local-utility-branch changes)
(ATTENTION: this will not work until Jim has merged the local-utility-branch)
Updated everything to match the current configuration machinery
=== Packages3/workflow/stateful/tests/test_instance.py 1.7 => 1.8 ===
--- Packages3/workflow/stateful/tests/test_instance.py:1.7 Mon Feb 24 12:57:40 2003
+++ Packages3/workflow/stateful/tests/test_instance.py Wed Mar 19 12:00:43 2003
@@ -36,6 +36,8 @@
from zope.app.container.zopecontainer import ZopeContainerAdapter
+from zope.app.interfaces.services.configuration \
+ import IUseConfigurable
from zope.app.interfaces.annotation import IAttributeAnnotatable
from zope.app.interfaces.services.configuration \
import Active, Unregistered, Registered
@@ -55,7 +57,8 @@
# define and create ProcessDefinition (PD) for tests
class TestProcessDefinition(StatefulProcessDefinition):
- __implements__ = IAttributeAnnotatable, StatefulProcessDefinition.__implements__
+ __implements__ = IAttributeAnnotatable, IUseConfigurable, \
+ StatefulProcessDefinition.__implements__