[CMF-checkins] CVS: CMF/CMFWorkspaces/tests - __init__.py:1.1
test_all.py:1.1
Yvo Schubbe
y.2004_ at wcm-solutions.de
Fri Sep 10 11:00:19 EDT 2004
Update of /cvs-repository/CMF/CMFWorkspaces/tests
In directory cvs.zope.org:/tmp/cvs-serv17154/CMFWorkspaces/tests
Added Files:
__init__.py test_all.py
Log Message:
- added CMFCollector, CMFStaging and CMFWorkspaces to all_cmf_tests.py
=== Added File CMF/CMFWorkspaces/tests/__init__.py ===
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
""" CMFWorkspaces product unit tests.
$Id: __init__.py,v 1.1 2004/09/10 15:00:19 yuppie Exp $
"""
=== Added File CMF/CMFWorkspaces/tests/test_all.py ===
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
""" CMFWorkspaces tests.
$Id: test_all.py,v 1.1 2004/09/10 15:00:19 yuppie Exp $
"""
from unittest import main
import Testing
import Zope
Zope.startup()
from Products.CMFCore.tests.base.utils import build_test_suite
def suite():
return build_test_suite('Products.CMFWorkspaces.tests',[
'testReferences',
])
def test_suite():
# Just to silence the top-level test.py
return None
if __name__ == '__main__':
main(defaultTest='suite')
More information about the CMF-checkins
mailing list