[Zope3-checkins] CVS: Zope3/src/zope/app/form/browser/tests - test_widgetdocs.py:1.1

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Mar 17 19:49:09 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/form/browser/tests
In directory cvs.zope.org:/tmp/cvs-serv5052/src/zope/app/form/browser/tests

Added Files:
	test_widgetdocs.py 
Log Message:


Added support for encoding and decoding HTML elements and entities, so that we
can edit HTML using widgets. Fixes issue 126.



Re-added doctests for browser text widgets.


=== Added File Zope3/src/zope/app/form/browser/tests/test_widgetdocs.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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_widgetdocs.py,v 1.1 2004/03/18 00:49:07 srichter Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite

def test_suite():
    suite = unittest.TestSuite()
    suite.addTest(DocTestSuite("zope.app.form.browser.textwidgets"))
    return suite

if __name__ == '__main__':
    unittest.main(defaultTest='test_suite')




More information about the Zope3-Checkins mailing list