summaryrefslogtreecommitdiff
path: root/django/test/client.py
AgeCommit message (Expand)Author
2017-11-28[2.0.x] Fixed #28837 -- Fixed test client crash if an exception with more tha...Nicolas Delaby
2017-09-06Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev
2017-05-09Fixed #28081 -- Stopped setting Content-Length=0 in conditional_content_remov...João Silva
2017-03-07Refs #27622 -- Fixed a regression in JSON content-type detectionClaude Paroz
2017-03-04Refs #27656 -- Updated remaining docstring verbs according to PEP 257.Anton Samarchyan
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-09Fixed #26005 -- Fixed some percent decoding cases in uri_to_iri().Chronial
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-12-29Fixed #27622 -- Allowed test client to accept vendor tree JSON content types.Anton Samarchyan
2016-12-01Fixed #27542 -- Made Client.force_login() skip auth backends without get_user().Anton Samarchyan
2016-11-21Fixed #27516 -- Made test client's response.json() cache the parsed JSON.Adam Chainz
2016-11-09Fixed #27184 -- Allowed uploading TemporaryFile with the test client.Tom Scrace
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-06Fixed #27027 -- Restored Client.force_login() defaulting to the first auth ba...Ben Demboski
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
2016-05-03Fixed #26567 -- Updated references to obsolete RFC2616.Vasiliy Faronov
2016-04-29Refs #26428 -- Added support for relative path redirects to the test client.Tim Graham
2016-04-25Fixed #26052 -- Moved conditional_content_removal() processing to the test cl...Tim Graham
2016-04-04Fixed #25699 -- Allowed using the test client if 'django.contrib.sessions' is...Sergey Kolosov
2016-03-23Fixed #24987 -- Allowed inactive users to login with the test client.Alexander Gaevsky
2016-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2016-01-07Fixed #24855 -- Allowed using contrib.auth.login() without credentials.Paulo Poiati
2016-01-05Replaced dict.setdefault() usage to avoid unnecessary object instantiations.Benjamin Bach
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
2015-09-19Fixed #25424 -- Use force_str for test client URLs.Travis Jensen
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-08-11Fixed #25163 -- Fixed exception handling in nested test client requests.pscottdevos
2015-07-01Fixed #20916 -- Added Client.force_login() to bypass authentication.Jon Dufresne
2015-05-25Fixed #24773 -- Added a json() method on test client responses.Andy McKay
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-12-04Fixed #23911 -- Added support for buffer file uploads in the test clientThomas Tanner
2014-11-25Fixed #23682 -- Enhanced circular redirects detection in tests.wrwrwr
2014-10-28Fixed #23606 -- Implemented Client and RequestFactory trace() methods.Rigel Di Scala
2014-10-21Fixed #21740 -- Allowed test client data to be an empty stringClaude Paroz
2014-10-16Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi
2014-08-29Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.Joshua "jag" Ginsberg
2014-06-13Fixed #22771 -- Fixed test.Client.logout when using custom auth backend.Xavier Fernandez
2014-06-13Fixed #16087 -- Added ResolverMatch instance to test client response.Greg Chapple