[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Workflow/Stateful/tests - testProcessDefinition.py:1.1.2.1
Grégoire Weber
zope@i-con.ch
Thu, 5 Dec 2002 10:50:38 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow/Stateful/tests
In directory cvs.zope.org:/tmp/cvs-serv9775/Stateful/tests
Added Files:
Tag: sprintathon-wf-branch
testProcessDefinition.py
Log Message:
first versions for stateful workflow implementation
=== Added File Zope3/lib/python/Zope/App/Workflow/Stateful/tests/testProcessDefinition.py ===
##############################################################################
#
# Copyright (c) 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Statefull workflow process definition.
$Id: testProcessDefinition.py,v 1.1.2.1 2002/12/05 15:50:38 gregweb Exp $
"""
import unittest
from Interface import Interface
from Interface.Verify import verifyClass
from Zope.App.Workflow.Statefull.IProcessDefinition import IProcessDefinition
class testProcessDefinition(unittest.TestCase):
def setUp(self):
pass
def testPass():
pass
def testInterface(self):
verifyClass(IWorkflowService, WorkflowService)