[Zope-CVS] CVS: Products/PluggableAuthService/plugins/tests -
test_HTTPBasicAuthHelper.py:1.8
Lennart Regebro
regebro at nuxeo.com
Wed Sep 22 06:47:19 EDT 2004
Update of /cvs-repository/Products/PluggableAuthService/plugins/tests
In directory cvs.zope.org:/tmp/cvs-serv4849/tests
Modified Files:
test_HTTPBasicAuthHelper.py
Log Message:
The FauxHTTPRequest needed a get method.
=== Products/PluggableAuthService/plugins/tests/test_HTTPBasicAuthHelper.py 1.7 => 1.8 ===
--- Products/PluggableAuthService/plugins/tests/test_HTTPBasicAuthHelper.py:1.7 Wed Sep 22 06:44:46 2004
+++ Products/PluggableAuthService/plugins/tests/test_HTTPBasicAuthHelper.py Wed Sep 22 06:47:19 2004
@@ -35,6 +35,9 @@
return None
return self._name, self._password
+
+ def get(self, name, default=None):
+ return getattr(self, name, default)
class FauxHTTPResponse:
More information about the Zope-CVS
mailing list