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

Vincenzo Di Somma e.disomma@icube.it
Tue, 5 Mar 2002 05:34:32 -0500


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

Added Files:
      Tag: Zope-3x-branch
	testWorkflowActionBegunEvent.py 
Log Message:
WorkflowBegunActionEvent added



=== Added File Zope3/lib/python/Zope/App/Workflow/tests/testWorkflowActionBegunEvent.py ===
import unittest

class WorkflowActionBegunEventTest( unittest.TestCase ):

    def testInterface( self ):
        from Zope.App.Workflow.IWorkflowActionBegunEvent import IWorkflowActionBegunEvent
        from Zope.App.Workflow.WorkflowActionBegunEvent import WorkflowActionBegunEvent
        from Interface import verify
        
        verify( IWorkflowActionBegunEvent, WorkflowActionBegunEvent )


if __name__ == '__main__':
    unittest.main()