cybertools/process/tests.py
helmutm 9774638a5e added cybertools.process - some simple workflow/process management stuff
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1274 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-07-28 11:22:50 +00:00

28 lines
650 B
Python
Executable file

#! /usr/bin/python
"""
Tests for the 'cybertools.process' package.
$Id$
"""
import unittest, doctest
from zope.testing.doctestunit import DocFileSuite
from cybertools.process.definition import ProcessDefinition
class TestProcess(unittest.TestCase):
"Basic tests for the process package."
def testBasicStuff(self):
p = ProcessDefinition()
def test_suite():
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
return unittest.TestSuite((
unittest.makeSuite(TestProcess),
DocFileSuite('README.txt', optionflags=flags),
))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')