[CMF-checkins] CVS: CMF - test_all.py:1.1 test_AllTopic.py:NONE

Jeffrey Shell jeffrey@digicool.com
Mon, 7 May 2001 10:43:43 -0400 (EDT)


Update of /cvs-repository/CMF/CMFTopic/tests
In directory korak:/home/jeffrey/InstanceHomes/cmf-dev/CMF/CMFTopic/tests

Added Files:
	test_all.py 
Removed Files:
	test_AllTopic.py 
Log Message:
Renaming test_AllTopic to test_all


--- Added File test_all.py in package CMF ---
import unittest
from Products.CMFTopic.tests import test_Topic, test_DateC, test_ListC, \
     test_SIC, test_SSC

def main():
    suite = unittest.TestSuite((
        test_Topic.test_suite(),
        test_DateC.test_suite(),
        test_ListC.test_suite(),
        test_SIC.test_suite(),
        test_SSC.test_suite(),
        ))
    unittest.TextTestRunner().run(suite)

if __name__ == '__main__':
    main()
    

--- Removed file test_AllTopic.py from package CMF --