cybertools/util/tests.py
helmutm bc83147047 added jeep module, a general purpose class for objects acting like a list, a dictionary and a normal object with attributes
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1606 fd906abe-77d9-0310-91a1-e0d9ade77398
2007-03-02 18:58:44 +00:00

28 lines
780 B
Python
Executable file

# $Id$
import unittest
import doctest
import cybertools.util.property
class Test(unittest.TestCase):
"Basic tests for modules in the util package."
def testBasicStuff(self):
pass
def test_suite():
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
return unittest.TestSuite((
#unittest.makeSuite(Test), # we don't need this
#doctest.DocTestSuite(cybertools.util.property, optionflags=flags),
doctest.DocFileSuite('adapter.txt', optionflags=flags),
doctest.DocFileSuite('defer.txt', optionflags=flags),
doctest.DocFileSuite('property.txt', optionflags=flags),
doctest.DocFileSuite('jeep.txt', optionflags=flags),
))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')