[Zope3-checkins] CVS: Zope3/src/zope/event/tests -
__init__.py:1.3.2.1 test_event.py:1.1.2.1
Marius Gedminas
marius at pov.lt
Fri Feb 13 14:23:17 EST 2004
Update of /cvs-repository/Zope3/src/zope/event/tests
In directory cvs.zope.org:/tmp/cvs-serv11377/src/zope/event/tests
Added Files:
Tag: mgedmin-events-branch
__init__.py test_event.py
Log Message:
Initial implementation of zope.event, a simple global event system.
=== Added File Zope3/src/zope/event/tests/__init__.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (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.
#
##############################################################################
"""Unit tests for zope.event.
$Id: __init__.py,v 1.3.2.1 2004/02/13 19:23:16 mgedmin Exp $
"""
=== Added File Zope3/src/zope/event/tests/test_event.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.0 (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.
#
##############################################################################
"""Unit tests for zope.event
$Id: test_event.py,v 1.1.2.1 2004/02/13 19:23:16 mgedmin Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return DocTestSuite('zope.event')
if __name__ == '__main__':
unittest.main()
More information about the Zope3-Checkins
mailing list