summaryrefslogtreecommitdiff
path: root/django/test
AgeCommit message (Expand)Author
2007-12-17Fixed #6134 -- Allow an on-disk SQLite database to be used for tests, if requ...Malcolm Tredinnick
2007-12-02Fixed #6024: Django's doctest no longer clashes with coverage.py. Thanks to N...Jacob Kaplan-Moss
2007-11-23Corrected a docstring in django.test.TestCase to match the actual behavior.Russell Keith-Magee
2007-11-11Fixed #5898 -- Changed a few response processing paths to make things harder ...Malcolm Tredinnick
2007-11-11When using assertRedirect(), allow the caller to specify relative URLs andMalcolm Tredinnick
2007-10-28Fixed #3457 -- Allow overridding of error messages for newforms Fields.Gary Wilson Jr
2007-10-21Modified the test harness to respect the LANGUAGE_CODE setting. Also changedMalcolm 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-14Fixed #5442 -- Added Jython workaround in django.test._doctest. Thanks, leo.s...Adrian Holovaty
2007-09-14Fixed #987 -- Convert relative URI portions into absolute URIs in HTTP Locati...Malcolm Tredinnick
2007-09-04Cleaned up some imports.Gary Wilson Jr
2007-09-03Removed some duplication in the Django `TestCase` methods by introducing a `t...Gary Wilson Jr
2007-09-03Fixed #4988 -- In the test client, Added tracking of the client and request t...Russell Keith-Magee
2007-08-31Fixed #4968 -- Added assertRedirects handling for paths with GET data. Thanks...Russell Keith-Magee
2007-08-28Fixed #4457 -- Corrected the handling of exceptions in the test client when t...Russell Keith-Magee
2007-08-20Changed backend create_test_db() and destroy_test_db() hooks NOT to take the ...Adrian Holovaty
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
2007-08-17Fixed #5189 -- Added logout method to test Client. Thanks, Jakub Wisniowski <...Russell Keith-Magee
2007-08-16Changed django.test.utils.create_test_db to return the name of the test datab...Adrian Holovaty
2007-08-16Added a return value to the test frameworks TestSMTPConnection.send_messages,...Russell Keith-Magee
2007-08-16Major refactoring of django.core.management -- it's now a package rather than...Adrian Holovaty
2007-08-12Fixed a Python 2.3 incompatibility.Malcolm Tredinnick
2007-07-28Fixed #4460 -- Added the ability to be more specific in the test cases that a...Russell Keith-Magee
2007-07-26Added support for database cache table in test database.Malcolm Tredinnick
2007-07-23Fixed #3771 -- Modified the test runner to observe the --noinput argument con...Russell Keith-Magee
2007-07-21Fixed #4402 -- Modified test client to allow multi-valued inputs on GET reque...Russell Keith-Magee
2007-07-21Minor fix to allow for count=0 in assertContains.Russell Keith-Magee
2007-07-20Fixed #4738 -- Modified the prompt that is displayed when a test database can...Russell Keith-Magee
2007-07-20Fixed #4901 -- Modified assertContains to provide a default check of 'any ins...Russell Keith-Magee
2007-07-20Fixed #3782 -- Added support for the suite() method recommended by the Python...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-05Fixed minor typo in assertion message.Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-22Backed out the changes in [5482] for a bit whilst some more investigation intoMalcolm Tredinnick
2007-06-17Fixed #4565 -- Changed template rendering to use iterators, rather thanMalcolm Tredinnick
2007-06-11Fixed a bug in the way file uploads were constructed. The new behaviourMalcolm Tredinnick
2007-05-31Fixed #4426 -- Renamed duplicate doctest module _doctest, and documented the ...Russell Keith-Magee
2007-05-29Added new TEST_DATABASE_CHARSET and TEST_DATABASE_COLLATION settings to ensureMalcolm Tredinnick
2007-05-14Fixed some incorrect reporting of error messages in assertRedirects, and adde...Russell Keith-Magee
2007-05-13Removed a stray import that snuck into [5211].Malcolm Tredinnick
2007-05-12Fixed the test harness to work with Python 2.3 again (tested that it stillMalcolm Tredinnick
2007-05-10Added the actual assertFormError changes, accidentally omitted from [5181].Russell Keith-Magee
2007-05-10Fixed import error handling when application tests are stored in a tests dire...Russell Keith-Magee
2007-05-10Added configurable arguments to assertRedirects and assertContains to allow f...Russell Keith-Magee
2007-05-08Added redirection for email services during test conditions.Russell Keith-Magee
2007-05-07Added assertFormError, assertTemplateUsed and assertTemplateNotUsed for use d...Russell Keith-Magee