[Zope3-checkins] CVS: Zope3/src/zope/app/browser/exception/tests -
test_form.py:1.1
Jim Fulton
jim at zope.com
Thu Aug 7 18:34:42 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/browser/exception/tests
In directory cvs.zope.org:/tmp/cvs-serv511/src/zope/app/browser/exception/tests
Added Files:
test_form.py
Log Message:
Added test for the WidgetInputErrorView.
=== Added File Zope3/src/zope/app/browser/exception/tests/test_form.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.
#
##############################################################################
"""XXX short summary goes here.
$Id: test_form.py,v 1.1 2003/08/07 21:34:36 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.app.browser.exception.form'),
))
if __name__ == '__main__': unittest.main()
More information about the Zope3-Checkins
mailing list