[CMF-checkins] CVS: CMF - __init__.py:1.1 test_all.py:1.1
tseaver@digicool.com
tseaver@digicool.com
Wed, 13 Jun 2001 20:35:44 -0400 (EDT)
Update of /cvs-repository/CMF/CMFDecor/tests
In directory korak.digicool.com:/tmp/cvs-serv7378/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 CMFDecor.
As test suites are added, they should be added to the
mega-test-suite in Products.CMFDecor.tests.test_all.py
"""
--- Added File test_all.py in package CMF ---
import unittest
#from Products.CMFDecor.tests import test_Decor
def test_suite():
suite = unittest.TestSuite()
#suite.addTest( test_Decor.test_suite() )
return suite
def run():
unittest.JUnitTextTestRunner().run(test_suite())
if __name__ == '__main__':
run()