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

Ken Manheimer klm@zope.com
Wed, 10 Oct 2001 15:14:59 -0400


Update of /cvs-repository/CMF/CMFCollector/tests
In directory cvs.zope.org:/tmp/cvs-serv7316/tests

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

  - Content types: Collector, CollectorIssue, (virtual)
    CollectorIssueTranscript, with python and skins.  (Almost all
    skins methods are ZPT or python scripts).

  - External method install script (Extensions/InstallCollector.py).

  - Install instructions (INSTALL.txt)

  - Pending issues (TODO.txt)



=== Added File CMF/CMFCollector/tests/__init__.py ===
"""\
Unit test package for CMFCalendar.

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


=== Added File CMF/CMFCollector/tests/test_all.py ===
"""Currently all stub, no substance."""

import unittest

def test_suite():
    suite = unittest.TestSuite()
    return suite

def run():
    if hasattr( unittest, 'JUnitTextTestRunner' ):
        unittest.JUnitTextTestRunner().run( test_suite() )
    else:
        unittest.TextTestRunner( verbosity=0 ).run( test_suite() )

if __name__ == '__main__':
    run()