summaryrefslogtreecommitdiff
path: root/django/test/client.py
AgeCommit message (Expand)Author
2008-10-07Fixed #5888 -- Added methods to the test client to support HEAD, PUT, DELETEMalcolm Tredinnick
2008-09-17Fixed #9117: Made the test client a new-style class. Thanks to Jan Oberst for...Russell Keith-Magee
2008-08-28Fixed #8636: Corrected the test client to use the string '80' in the request ...Russell Keith-Magee
2008-08-15Fixed #7416: Modified test client to preserve session when a user logs in. Th...Russell Keith-Magee
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-07-21Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (orMalcolm Tredinnick
2008-07-19Revert [7991] - [7993]. I was committing from the wrong branch. Sorry 'boutMalcolm Tredinnick
2008-07-19First part of setting request.path correctly.Malcolm Tredinnick
2008-07-07Fixed #7651: uploading multiple files with the same name now work. Also, in o...Jacob Kaplan-Moss
2008-07-02Got rid of a bit of repetition by using `dict.update()`.Gary Wilson Jr
2008-07-02Minor style fixes.Gary Wilson Jr
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-06-07Fixed #5836 -- Corrected the logic in the Test Client when an exception raise...Russell Keith-Magee
2008-06-06Fixed #7143 -- Modified the test client to better match (most) real browser b...Russell Keith-Magee
2008-03-20Fixed #5982 -- Changed test client's URL processing to match core's (everythingMalcolm Tredinnick
2008-02-19Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups).Malcolm Tredinnick
2008-02-03Fixed #6479 -- Use settings.SESSION_COOKIE_NAME instead of hard-coded "sessio...Malcolm Tredinnick
2007-11-11Fixed #5898 -- Changed a few response processing paths to make things harder ...Malcolm Tredinnick
2007-09-15Cleaned up a couple of mistakes (a handful of bugs in the test client) that I...Jacob Kaplan-Moss
2007-09-15Fixed #2066: session data can now be stored in the cache or on the filesystem...Jacob Kaplan-Moss
2007-09-14Fixed #5445: added some compatibility code for the lack of __iter__ in Jython...Jacob Kaplan-Moss
2007-09-03Fixed #4988 -- In the test client, Added tracking of the client and request t...Russell Keith-Magee
2007-08-28Fixed #4457 -- Corrected the handling of exceptions in the test client when t...Russell Keith-Magee
2007-08-17Fixed #5189 -- Added logout method to test Client. Thanks, Jakub Wisniowski <...Russell Keith-Magee
2007-07-21Fixed #4402 -- Modified test client to allow multi-valued inputs on GET reque...Russell Keith-Magee
2007-07-14Negligible capitalization fix in test/client.py docstringAdrian Holovaty
2007-07-12Fixed #4526 -- Modified the test Client login method to fail when a user is i...Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-11Fixed a bug in the way file uploads were constructed. The new behaviourMalcolm Tredinnick
2007-05-05Backwards incompatible change: Changed the way test.Client.login operates. Ol...Russell Keith-Magee
2007-03-22Fixes #3212 -- Added code to test client to allow posting of multi-form value...Russell Keith-Magee
2007-02-18Fixed #3210 -- Modified test Client.login() to use urlparse, allowing absolut...Russell Keith-Magee
2007-02-17Fixed #3160 -- Added the ability to control the content type in a test client...Russell Keith-Magee
2007-02-11Fixed #3162 -- Added coded to catch and rethrow exceptions that are thrown by...Russell Keith-Magee
2007-02-09Added a ``session`` attribute to the test Client, to make it easier to test i...Russell Keith-Magee
2006-09-28Changed BaseHandler.get_response() to take a single parameter (an HttpRequest...Adrian Holovaty
2006-09-02Refs #2333 - Re-added the template rendering signal for testing purposes; how...Russell Keith-Magee
2006-08-27Refs #2333 - Added test framework. This includes doctest and unittest finders...Russell Keith-Magee