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

Tres Seaver tseaver@zope.com
Tue, 5 Mar 2002 04:34:44 -0500


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

Added Files:
      Tag: Zope-3x-branch
	testWorkflowAction.py 
Removed Files:
      Tag: Zope-3x-branch
	testWorkflowActionCreated.py 
Log Message:
 - Oops, misnamed test module

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

class WorkflowActionCreatedTests( unittest.TestCase ):

    def testInterface( self ):
        from Zope.App.Workflow.IWorkflowEvents import IWorkflowEvent
        from Zope.App.Workflow.IWorkflowEvents \
            import IWorkflowActionCreatedEvent
        from Zope.App.Workflow.WorkflowEvents import WorkflowActionCreatedEvent
        from Interface import verify

        verify( IWorkflowEvent, WorkflowActionCreatedEvent )
        verify( IWorkflowActionCreatedEvent, WorkflowActionCreatedEvent )


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

=== Removed File Zope3/lib/python/Zope/App/Workflow/tests/testWorkflowActionCreated.py ===