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

tseaver@digicool.com tseaver@digicool.com
Sat, 2 Jun 2001 02:43:16 -0400 (EDT)


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

Added Files:
	__init__.py test_all.py 
Log Message:


 - Initial cut:  documentation and skeleton only.



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

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

--- Added File test_all.py in package CMF ---
import unittest
#from Products.CMFCore.tests import test_ContentTypeRegistry

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

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

if __name__ == '__main__':
    run()