############################################################################## # # Copyright (c) 2004 Philipp "philiKON" von Weitershausen # # This software is distributed under the terms of the Zope Public # License (ZPL) v2.1. # ############################################################################## """Unit tests $Id$ """ import unittest from zope.testing.doctestunit import DocTestSuite def test_suite(): return unittest.TestSuite(( DocTestSuite('pentecost.pentecost'), DocTestSuite('pentecost.vocabulary'), )) if __name__ == '__main__': unittest.main(defaultTest='test_suite')