[Zope3-checkins] CVS: Zope3/src/zope/app/form/browser/tests -
test_exception.py:1.1
Philipp von Weitershausen
philikon at philikon.de
Sun Apr 11 08:31:49 EDT 2004
Update of /cvs-repository/Zope3/src/zope/app/form/browser/tests
In directory cvs.zope.org:/tmp/cvs-serv24636/src/zope/app/form/browser/tests
Added Files:
test_exception.py
Log Message:
Moved view for WidgetInputError exception to zope.app.form.browser and
made it a view providing an interface (IWidgetInputErrorView).
=== Added File Zope3/src/zope/app/form/browser/tests/test_exception.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.
#
##############################################################################
"""
$Id: test_exception.py,v 1.1 2004/04/11 12:31:49 philikon Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.app.form.browser.exception'),
))
if __name__ == '__main__': unittest.main()
More information about the Zope3-Checkins
mailing list