<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/webob.git/tests/test_request.py, branch docs/cleanup</title>
<subtitle>github.com: Pylons/webob.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/'/>
<entry>
<title>Add missing test for FakeCGIBody.readable()</title>
<updated>2015-04-13T14:49:52+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-13T14:49:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=7f3c67d390ef39cedded4b287c5e5c3c17072a2b'/>
<id>7f3c67d390ef39cedded4b287c5e5c3c17072a2b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update test to just check the environment variable</title>
<updated>2015-04-12T20:19:16+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-11T16:22:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=0e7b6e5fbf70b31564f71c7b00ce6de286224104'/>
<id>0e7b6e5fbf70b31564f71c7b00ce6de286224104</id>
<content type='text'>
The test was flawed in that it assumed that the body_file would be
replaced with FakeCGIBody.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The test was flawed in that it assumed that the body_file would be
replaced with FakeCGIBody.
</pre>
</div>
</content>
</entry>
<entry>
<title>Request.POST should not replace Request.body_file</title>
<updated>2015-04-12T20:18:22+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-11T16:17:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=1cc3340fabb638407cbdc8d7b7b1c09a7eca8148'/>
<id>1cc3340fabb638407cbdc8d7b7b1c09a7eca8148</id>
<content type='text'>
FakeCGIBody mangles anything that isn't actually form-encoded, such as
JSON that isn't sent with the appropriate content type.

We hereby remove the usage of FakeCGIBody and instead just make the body
itself seekable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
FakeCGIBody mangles anything that isn't actually form-encoded, such as
JSON that isn't sent with the appropriate content type.

We hereby remove the usage of FakeCGIBody and instead just make the body
itself seekable.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add failing test for request.POST modified body</title>
<updated>2015-04-11T16:16:32+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-11T16:16:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=b2d0b90f05577212a294678610a3094e37ff83a7'/>
<id>b2d0b90f05577212a294678610a3094e37ff83a7</id>
<content type='text'>
See https://github.com/Pylons/webob/issues/149 for more details.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://github.com/Pylons/webob/issues/149 for more details.
</pre>
</div>
</content>
</entry>
<entry>
<title>request: read body from file if the method is PATCH</title>
<updated>2014-12-26T13:24:39+00:00</updated>
<author>
<name>Julien Danjou</name>
<email>julien@danjou.info</email>
</author>
<published>2014-12-26T10:33:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=b4ebafde6ac14badb8fc95fc93090003f2d41ccb'/>
<id>b4ebafde6ac14badb8fc95fc93090003f2d41ccb</id>
<content type='text'>
Currently Request.from_file ignore the body of a request if the method
is PATCH. This fixes that by using the dictionary we have to know if a
request might have a body or not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently Request.from_file ignore the body of a request if the method
is PATCH. This fixes that by using the dictionary we have to know if a
request might have a body or not.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change from_string to from_bytes</title>
<updated>2014-04-16T17:06:54+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-04-16T16:42:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=bbf8e86433e8ccea01f17fdc7d2950bf35177cac'/>
<id>bbf8e86433e8ccea01f17fdc7d2950bf35177cac</id>
<content type='text'>
This allows us to avoid a deprecationwarning being raised and makes the
test compatible with version 1.3 or higher of WebOb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows us to avoid a deprecationwarning being raised and makes the
test compatible with version 1.3 or higher of WebOb.
</pre>
</div>
</content>
</entry>
<entry>
<title>Test deprecation of functionality</title>
<updated>2014-04-16T17:06:54+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-04-16T16:42:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=5538463972ec4f98bd9ba731c4d4e736b1fa045b'/>
<id>5538463972ec4f98bd9ba731c4d4e736b1fa045b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for JSON body request with array</title>
<updated>2014-02-15T06:23:43+00:00</updated>
<author>
<name>jturmel</name>
<email>jturmel@gmail.com</email>
</author>
<published>2014-02-15T06:23:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=1fbcac831e082eceb85fbdf64a53d3f3f1754e7d'/>
<id>1fbcac831e082eceb85fbdf64a53d3f3f1754e7d</id>
<content type='text'>
* Add a test to make sure sending a JSON body where the root element is an
  array works correctly
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add a test to make sure sending a JSON body where the root element is an
  array works correctly
</pre>
</div>
</content>
</entry>
<entry>
<title>add test for wiggy's IRC condition</title>
<updated>2013-12-10T11:04:51+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2013-12-10T11:04:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=2712ff03069a83e483d022d2956e5c0026c51f89'/>
<id>2712ff03069a83e483d022d2956e5c0026c51f89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Added a read-only ``domain`` property to ``BaseRequest``.  This property</title>
<updated>2013-11-27T21:38:53+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2013-11-27T21:38:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=66722ebb583620aa7b182f20951cd044e7833a2a'/>
<id>66722ebb583620aa7b182f20951cd044e7833a2a</id>
<content type='text'>
  returns the domain portion of the host value.  For example, if the
  environment contains an ``HTTP_HOST`` value of ``foo.example.com:8000``,
  ``request.domain`` will return ``foo.example.com``.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  returns the domain portion of the host value.  For example, if the
  environment contains an ``HTTP_HOST`` value of ``foo.example.com:8000``,
  ``request.domain`` will return ``foo.example.com``.
</pre>
</div>
</content>
</entry>
</feed>
