[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Workflow/tests - testWorkflowAction.py:1.1.2.2

Florent Guillaume fg@nuxeo.com
Tue, 5 Mar 2002 05:10:06 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow/tests
In directory cvs.zope.org:/tmp/cvs-serv5138/tests

Modified Files:
      Tag: Zope-3x-branch
	testWorkflowAction.py 
Log Message:
First (empty) cut of Workflow Action Completed Event.


=== Zope3/lib/python/Zope/App/Workflow/tests/testWorkflowAction.py 1.1.2.1 => 1.1.2.2 ===
 
 
+class WorkflowActionCompletedEvent(unittest.TestCase):
+
+    def testInterface(self):
+        from Zope.App.Workflow.IWorkflowEvents import IWorkflowEvent
+        from Zope.App.Workflow.IWorkflowEvents \
+            import IWorkflowActionCompletedEvent
+        from Zope.App.Workflow.WorkflowEvents import WorkflowActionCompletedEvent
+        from Interface import verify
+
+
 if __name__ == '__main__':
     unittest.main()