[Zope3-checkins] CVS: Zope3/src/zope/app/workflow/tests -
directive_helpers.py:1.4 test_definition.py:1.3
test_instance.py:1.4 test_service.py:1.8
Philipp von Weitershausen
philikon at philikon.de
Fri Feb 27 11:50:48 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/workflow/tests
In directory cvs.zope.org:/tmp/cvs-serv22977/workflow/tests
Modified Files:
directive_helpers.py test_definition.py test_instance.py
test_service.py
Log Message:
Centralized the workflow interfaces and browser views in
zope.app.workflow.
=== Zope3/src/zope/app/workflow/tests/directive_helpers.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/workflow/tests/directive_helpers.py:1.3 Fri Jun 6 15:29:08 2003
+++ Zope3/src/zope/app/workflow/tests/directive_helpers.py Fri Feb 27 11:50:47 2004
@@ -11,12 +11,15 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""
+$Id$
+"""
__metaclass__ = type
-from zope.app.interfaces.workflow import IProcessDefinition
-from zope.app.interfaces.workflow import IProcessDefinitionImportHandler
-from zope.app.interfaces.workflow import IProcessDefinitionExportHandler
+from zope.app.workflow.interfaces import IProcessDefinition
+from zope.app.workflow.interfaces import IProcessDefinitionImportHandler
+from zope.app.workflow.interfaces import IProcessDefinitionExportHandler
from zope.interface import implements
=== Zope3/src/zope/app/workflow/tests/test_definition.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/workflow/tests/test_definition.py:1.2 Tue Jun 3 18:46:24 2003
+++ Zope3/src/zope/app/workflow/tests/test_definition.py Fri Feb 27 11:50:47 2004
@@ -11,15 +11,18 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""
+$Id$
+"""
import unittest
from zope.interface.verify import verifyClass
-from zope.app.interfaces.workflow import IProcessDefinition
+from zope.app.workflow.interfaces import IProcessDefinition
from zope.app.workflow.definition import ProcessDefinition
-from zope.app.interfaces.workflow import IProcessDefinitionElementContainer
+from zope.app.workflow.interfaces import IProcessDefinitionElementContainer
from zope.app.workflow.definition import ProcessDefinitionElementContainer
=== Zope3/src/zope/app/workflow/tests/test_instance.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/workflow/tests/test_instance.py:1.3 Sun Sep 21 13:34:04 2003
+++ Zope3/src/zope/app/workflow/tests/test_instance.py Fri Feb 27 11:50:47 2004
@@ -11,6 +11,9 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""
+$Id$
+"""
import unittest
from zope.interface.verify import verifyClass
@@ -18,10 +21,10 @@
from zope.app.interfaces.annotation import IAnnotations
from zope.app.tests.placelesssetup import PlacelessSetup
-from zope.app.interfaces.workflow import IProcessInstance
+from zope.app.workflow.interfaces import IProcessInstance
from zope.app.workflow.instance import ProcessInstance
-from zope.app.interfaces.workflow import IProcessInstanceContainer
+from zope.app.workflow.interfaces import IProcessInstanceContainer
from zope.app.workflow.instance import ProcessInstanceContainerAdapter, WFKey
from zope.interface import implements
=== Zope3/src/zope/app/workflow/tests/test_service.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/workflow/tests/test_service.py:1.7 Thu Dec 18 04:57:18 2003
+++ Zope3/src/zope/app/workflow/tests/test_service.py Fri Feb 27 11:50:47 2004
@@ -12,8 +12,6 @@
#
##############################################################################
"""
-
-Revision information:
$Id$
"""
@@ -30,7 +28,7 @@
from zope.app.interfaces.services.registration import ActiveStatus
from zope.app.workflow.tests.workflowsetup import WorkflowSetup
-from zope.app.interfaces.workflow \
+from zope.app.workflow.interfaces \
import IWorkflowService, IProcessDefinition
from zope.app.workflow.service import WorkflowService
from zope.app.workflow.service import ProcessDefinitionRegistration
More information about the Zope3-Checkins
mailing list