cybertools/process/tests.py
helmutm b978abe473 reorganize cybertools.process; add simple action handler and work item class
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1280 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-08-02 19:21:30 +00:00

28 lines
630 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 Process
class TestProcess(unittest.TestCase):
"Basic tests for the process package."
def testBasicStuff(self):
p = Process()
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')