summaryrefslogtreecommitdiff
path: root/django/test
AgeCommit message (Expand)Author
2010-10-21Fixed #14520 -- fixed a memory leak when running the test suite.Alex Gaynor
2010-10-18Fixed an naming problem with r14258. Thanks to Alex for the report.Russell Keith-Magee
2010-10-18Fixed #14487 -- Prevented unittest from leaking into scope via a 'from django...Russell Keith-Magee
2010-10-17Corrected the skipIfDBFeature and skipUnlessDBFeature decorators to actually ...Russell Keith-Magee
2010-10-12Fixed #9002 -- Added a RequestFactory. This allows you to create request inst...Russell Keith-Magee
2010-10-12Fixed #5416 -- Added TestCase.assertNumQueries, which tests that a given func...Alex Gaynor
2010-10-11Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee
2010-10-11Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...Russell Keith-Magee
2010-10-10Fixed #12226 -- Deprecated test client Response.template attribute in favor o...Carl Meyer
2010-10-09Fixed #12979 -- allowed using savepoints in TestCase (i.e. tests with transac...Alex Gaynor
2010-10-09Fixed #14378 -- Made the test client class customizable. Thanks to Ned Batche...Russell Keith-Magee
2010-09-26Fixed #13827 -- Cleaned up a few unnecessary function calls.Jannis Leidel
2010-08-27Fixed #14116 -- Added a flag to enable CSRF checks in the test client. Thanks...Russell Keith-Magee
2010-08-21Fixed #13140 -- Ensure that request headers are preserved through redirect ch...Russell Keith-Magee
2010-08-20Fixed #13895 -- Refactored aggregation_regress doctests. Thanks to Alex Gayno...Russell Keith-Magee
2010-08-06Fixed #11159 -- Added mimetype detection to the test client for file uploads....Russell Keith-Magee
2010-08-06Fixed #13615 -- Clarified test assertion text to avoid confusion when respons...Russell Keith-Magee
2010-08-06Fixed #13092 -- Added support for the "in" operator when dealing with context...Russell Keith-Magee
2010-05-28Fixed #13634 -- Migrated aggregation tests to use unittest. This removes a fl...Russell Keith-Magee
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-13Fixed #13332 -- Corrected the cleanup code in the test client to avoid a refc...Russell Keith-Magee
2010-03-19Fixed #13152 -- Ensure the test client saves the session before writing the s...Russell Keith-Magee
2010-02-22Fixed #12932 -- Added an extra argument to suite_result() in the test runner,...Russell Keith-Magee
2010-02-13Fixed #12011 -- Modified the test client to preserve the request scheme on a ...Russell Keith-Magee
2010-02-13Fixed #12825 -- Corrected a missing space in a test case error message. Thank...Russell Keith-Magee
2010-02-02Removed a stray debug statement. Thanks to Ramiro Morales for the report.Russell Keith-Magee
2010-02-01Fixed #6364 -- Added the ability to run individual doctests.Russell Keith-Magee
2010-01-28Fixed #12720 -- Corrected handling of cookies in the TestClient. Thanks to Ja...Russell Keith-Magee
2010-01-25Fixed #12672 -- Added the ability to configure which applications are availab...Russell Keith-Magee
2010-01-25Fixed #12542 -- Added the TEST_MIRROR setting, allowing testing of read slave...Russell Keith-Magee
2010-01-22Fixed #12659 -- Return a more meaningful KeyError message when ContextList lo...Russell Keith-Magee
2010-01-22Fixed #10314 -- Added a message prefix argument to Django's test assertions. ...Russell Keith-Magee
2010-01-19Fixed #12640 -- Corrected a regression in test suite construction order intro...Russell Keith-Magee
2010-01-18Fixed #12624 -- Modified test runners to be class based.Russell Keith-Magee
2010-01-04Modified the way EMAIL_BACKEND is specified to make it consistent with the ne...Russell Keith-Magee
2009-12-31Ensure the default keyboard interrupt handler is restoredKaren Tracey
2009-12-31Fixed #12364: Added graceful exit from a test run when Ctrl-C is pressed. Th...Karen Tracey
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-14Fixed #6262 -- Added a cached template loader, and modified existing template...Russell Keith-Magee
2009-12-13Fixed #11613: Added a failfast option for test running. Thanks jukvalim and ...Karen Tracey
2009-11-04Corrected the order of operations in the test environment setup to ensure tha...Russell Keith-Magee
2009-11-03Fixed #10355 -- Added an API for pluggable e-mail backends.Russell Keith-Magee
2009-10-26Fixed #9977 - CsrfMiddleware gets template tag added, session dependency remo...Luke Plant
2009-10-26Fixed #11371: Made `django.test.Client.put()` work for non-form-data PUT (i.e...Jacob Kaplan-Moss
2009-05-17Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments...Karen Tracey
2009-04-22Fixed #10831 -- Prevented code running under a to-be-rolled-back test from ca...Karen Tracey
2009-04-11Fixed #10571 -- Ensured that unicode POST data is correctly encoded by the te...Russell Keith-Magee
2009-04-07Fixed #10183 -- Corrected the handling of unicode in assertContains and asser...Russell Keith-Magee
2009-03-31Fixed #10676 -- Make transaction nop routine used during testing accept any a...Karen Tracey
2009-03-30Fixed #9978 -- Fixed a KeyError exception that was being raised when using th...Gary Wilson Jr