[Zope3-checkins]
SVN: zope.testing/trunk/src/zope/testing/formparser.py
add comments pointing to zope.testbrowser
Fred L. Drake, Jr.
fdrake at gmail.com
Fri Jul 29 10:30:57 EDT 2005
Log message for revision 37538:
add comments pointing to zope.testbrowser
Changed:
U zope.testing/trunk/src/zope/testing/formparser.py
-=-
Modified: zope.testing/trunk/src/zope/testing/formparser.py
===================================================================
--- zope.testing/trunk/src/zope/testing/formparser.py 2005-07-29 14:22:56 UTC (rev 37537)
+++ zope.testing/trunk/src/zope/testing/formparser.py 2005-07-29 14:30:56 UTC (rev 37538)
@@ -5,6 +5,9 @@
See *formparser.txt* for documentation.
+This isn't intended to simulate a browser session; that's provided by
+the `zope.testbrowser` package.
+
"""
__docformat__ = "reStructuredText"
@@ -173,6 +176,9 @@
# This object should provide some method to prepare a dictionary
# that can be passed directly as the value of the `form` argument
# to the `http()` function of the Zope functional test.
+ #
+ # This is probably a low priority given the availability of the
+ # `zope.testbrowser` package.
def __init__(self, name, id, method, action, enctype):
super(Form, self).__init__()
More information about the Zope3-Checkins
mailing list