summaryrefslogtreecommitdiff
path: root/tests/test_response.py
Commit message (Expand)AuthorAgeFilesLines
* Un-break backwards compatibility on set_cookieBert JW Regeer2015-07-301-0/+22
* Be good, add a testBert JW Regeer2015-04-141-0/+8
* Fixed test for exception that no longer occurs.Tim Pederick2015-04-141-1/+1
* Revert "Merge branch 'pr/100': Delete body if response code is 204,205 or 304"Bert JW Regeer2015-04-141-10/+0
* Merge branch 'pr/100': Delete body if response code is 204,205 or 304Bert JW Regeer2015-04-141-0/+10
|\
| * delete response.content_type if assigning 204 (No Content) to response.statusAndreas Motl2013-03-301-0/+10
* | Merge branch 'pr/146': Use \r\n line endings in Response.__str__Bert JW Regeer2015-04-141-0/+4
|\ \
| * | Use '\r\n' line endings in Response.__str__.Laurence Rowe2014-04-161-0/+4
| |/
* | Merge remote-tracking branch 'origin/pr/188'Bert JW Regeer2015-04-031-7/+47
|\ \
| * | Add setup/teardown module functionsBert JW Regeer2015-03-221-2/+29
| * | Verify unicode values raise an exceptionBert JW Regeer2015-03-221-6/+5
| * | Change test_cookies() to not include unicodeBert JW Regeer2015-03-221-3/+3
| * | Documentation states expires can be timedeltaBert JW Regeer2015-03-221-0/+14
| |/
* | Native `str` strings from Response.from_filePhilippe Gauthier2014-05-281-0/+6
|/
* Fix test breakage under Py3k.Tres Seaver2013-03-291-1/+1
* No docstrings in testcases.Tres Seaver2013-03-291-4/+3
* bring test coverage back to 100% for pull request 85 which fixes bug #84Tom Willis2013-03-231-0/+12
* Added a fix and modified the unit tests to accomodate.Rishi Ramraj2012-11-221-2/+0
* fix issue #63 - res.cache_expires(seconds=0) then res.cache_expires(seconds=1...Sergey Schetinin2012-07-291-0/+10
* Add some tests for Request.text, and .jsonIan Bicking2012-04-141-0/+2
* Change Response.status_int to Response.status_code (while still supporting .s...Ian Bicking2012-04-131-25/+27
* Aliased json to json_body. Make json_body a settable value. Added json_body...Ian Bicking2012-04-101-0/+7
* fix https://github.com/Pylons/webob/issues/34Sergey Schetinin2012-03-031-0/+2
* fix https://github.com/Pylons/webob/issues/31Sergey Schetinin2012-03-031-0/+5
* turn remote_user_encoding and url_encoding into environ_getters (adding webob...Chris McDonough2012-01-261-2/+9
* fix status_int/status bug on py3 (use explicit floor division), add coverageChris McDonough2012-01-081-1/+28
* fix str(Response()) w/o charset, but only on py2Sergey Schetinin2011-10-021-0/+2
* Merge branch 'sergey-1.2-py2-only' into 1.2-mergeSergey Schetinin2011-09-251-4/+20
|\
| * enable weak matching for if-none-matchSergey Schetinin2011-09-211-4/+20
* | test coverageSergey Schetinin2011-09-251-2/+2
* | fix etag_md5(set_content_md5=True)Sergey Schetinin2011-09-251-11/+2
* | more test coverageSergey Schetinin2011-09-241-6/+10
* | return bytes, not textChris McDonough2011-09-231-1/+1
* | add test for setting status to a binary typeChris McDonough2011-09-221-0/+7
* | improve from_file tests and implChris McDonough2011-09-221-5/+15
* | md5 doesnt need a compat importChris McDonough2011-09-211-1/+1
* | use direct imports, kill dead importsChris McDonough2011-09-201-16/+16
* | atrocious straddling codeChris McDonough2011-09-201-1/+1
* | b -> bytes_Chris McDonough2011-09-201-104/+105
* | Merge commit 'bce343c65d61d2b0ff67b86fa7cee0f59f3bd288' into chrism-py3-alt-m...Sergey Schetinin2011-09-191-93/+13
|\ \ | |/
| * * deprecate Response.request / .environSergey Schetinin2011-09-181-93/+13
* | Merge commit '250a1f802668378c69a751194aba19899b456f25' into chrism-py3-alt-m...Sergey Schetinin2011-09-191-13/+10
|\ \ | |/
| * StringIO -> BytesIOSergey Schetinin2011-09-181-13/+10
* | made all response tests pass except cookie-related onesChris McDonough2011-09-161-72/+87
* | work towards creating and using 'compat' module and removing syntax errors wh...Chris McDonough2011-09-151-21/+25
|/
* bring back to 100% test coverageSergey Schetinin2011-08-181-0/+4
* * make Response.write much more efficient (https://bitbucket.org/ianb/webob/i...Sergey Schetinin2011-08-181-91/+49
* fix test on Jython (did you know that 'abc'.encode('utf-16') produces differentSergey Schetinin2011-08-091-5/+6
* * change del res.body semantics so that it doesn't make the response invalid,Sergey Schetinin2011-08-091-34/+33
* make Response().body_file settable. usage: Response(body_file=open('foo.bin')...Sergey Schetinin2011-07-201-38/+43