[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Workflow/Stateful/tests - testStatefulProcessDefinition.py:1.1.2.1 testProcessDefinition.py:NONE
Florent Guillaume
fg@nuxeo.com
Thu, 5 Dec 2002 11:44:40 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow/Stateful/tests
In directory cvs.zope.org:/tmp/cvs-serv27144/Stateful/tests
Added Files:
Tag: sprintathon-wf-branch
testStatefulProcessDefinition.py
Removed Files:
Tag: sprintathon-wf-branch
testProcessDefinition.py
Log Message:
Big renaming, remove the Workflow prefix in most cases. It's redundant
and makes for very long lines.
=== Added File Zope3/lib/python/Zope/App/Workflow/Stateful/tests/testStatefulProcessDefinition.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.
#
##############################################################################
"""Stateful workflow process definition.
$Id: testStatefulProcessDefinition.py,v 1.1.2.1 2002/12/05 16:44:39 efge Exp $
"""
import unittest
from Interface import Interface
from Interface.Verify import verifyClass
from Zope.App.Workflow.Stateful.IStatefulProcessDefinition \
import IStatefulProcessDefinition
from Zope.App.Workflow.Stateful.StatefulProcessDefinition \
import StatefulProcessDefinition
class StatefulProcessDefinitionTests(unittest.TestCase):
def setUp(self):
pass
def testInterface(self):
verifyClass(IStatefulProcessDefinition, StatefulProcessDefinition)
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.defaultTestLoader.loadTestsFromTestCase(
StatefulProcessDefinitionTests))
return suite
if __name__ == '__main__':
unittest.main()
=== Removed File Zope3/lib/python/Zope/App/Workflow/Stateful/tests/testProcessDefinition.py ===