[CMF-checkins] CVS: CMF - __init__.py:1.1 test_all.py:1.1

tseaver@digicool.com tseaver@digicool.com
Wed, 13 Jun 2001 20:39:36 -0400 (EDT)


Update of /cvs-repository/CMF/DCWorkflow/tests
In directory korak.digicool.com:/tmp/cvs-serv7650/tests

Added Files:
	__init__.py test_all.py 
Log Message:
 - Initial skeleton for testing suite.


--- Added File __init__.py in package CMF ---
"""\
Unit test package for DCWorkflow.

As test suites are added, they should be added to the
mega-test-suite in Products.DCWorkflow.tests.test_all.py
"""

--- Added File test_all.py in package CMF ---
import unittest
#from Products.DCWorkflow.tests import test_DCWorkflow

def test_suite():
    suite = unittest.TestSuite()
    #suite.addTest( test_DCWorkflow.test_suite() )
    return suite

def run():
    unittest.JUnitTextTestRunner().run(test_suite())

if __name__ == '__main__':
    run()