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

Florent Guillaume fg@nuxeo.com
Wed, 6 Mar 2002 04:28:20 -0500


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

Added Files:
      Tag: Zope-3x-branch
	testWorkflowActivityInfo.py 
Log Message:
First empty Workflow Activity Info with tests (florent+luca).

=== Added File Zope3/lib/python/Zope/App/Workflow/tests/testWorkflowActivityInfo.py ===
import unittest
from Interface.Verify import verifyClass

class WorkflowActivityInfo(unittest.TestCase):

    def testInterface(self):
        from Zope.App.Workflow.IWorkflowActivityInfo import IWorkflowActivityInfo
        from Zope.App.Workflow.WorkflowActivityInfo import WorkflowActivityInfo

        verifyClass(IWorkflowActivityInfo, WorkflowActivityInfo)


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