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

Paul Everitt paul@zope.com
Wed, 6 Mar 2002 05:49:01 -0500


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

Added Files:
      Tag: Zope-3x-branch
	testWorkflowEngine.py 
Log Message:
workflow engine interface and implementation.

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

 
class WorkflowEngineTest( unittest.TestCase ):

    def testInterface( self ):
        from Zope.App.Workflow.IWorkflowEngine import IWorkflowEngine
        from Zope.App.Workflow.WorkflowEngine import WorkflowEngine
        from Interface.Verify import verifyClass

        verifyClass( IWorkflowEngine, WorkflowEngine )





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