summaryrefslogtreecommitdiff
path: root/django/test/utils.py
AgeCommit message (Expand)Author
2013-02-19[1.5.x] Added a new required ALLOWED_HOSTS setting for HTTP host header valid...Carl Meyer
2013-02-16[1.5.x] Fixed #19833 -- Fixed import parameter encoding in get_runnerClaude Paroz
2013-01-01[1.5.x] Fixed #19519 again -- Regression in LiveServerTestCase after fd1279a4.Aymeric Augustin
2012-12-31[1.5.x] Fixed #19519 -- Fired request_finished in the WSGI iterable's close().Aymeric Augustin
2012-11-25[1.5.x] Enabled SimpleTestCase to be decorated by override_settingsClaude Paroz
2012-11-25[1.5.x] Fixed #18417 -- Raised exception when unittest.TestCase is decorated ...Claude Paroz
2012-10-15Fixed assertXMLEqual when first node was a commentClaude Paroz
2012-10-06Added assertXML[Not]Equal assertionsClaude Paroz
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-08-11[py3] Fixed str_prefix test utilityClaude Paroz
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2012-03-13Fixed #17895 -- Made override_settings send the setting_changed signal both w...Aymeric Augustin
2011-10-08Fixed #17011 - Made override_settings modify a decorated class in-place rathe...Carl Meyer
2011-09-04Also copy `__module__` to our dynamically created TestCase subclass when over...Ramiro Morales
2011-08-23Fixed #16672 -- Ensure that test classes decorated with @override_setings get...Russell Keith-Magee
2011-08-10Made override_settings also work with TransactionTestCase when acting as a cl...Ramiro Morales
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-07-10Fixed #16447 -- Stopped using the setting name as the sender parameter for th...Jannis Leidel
2011-06-11Fixed #16224 -- Fixed override_settings test utility to correctly work with T...Jannis Leidel
2011-06-10Fixed #16185, #15675 -- Added the ability for test runners to define custom o...Russell Keith-Magee
2011-05-18Fixed #15561 -- Extended test setting override code added in r16165 with a de...Jannis Leidel
2011-04-17Fixes #15814 -- Added a test util to abstract the process of using a test tem...Chris Beaven
2011-04-02Removed a usage of the depreacted SMTPConnection in test.utils.Russell Keith-Magee
2010-11-11Fixed #14508 - test suite silences warnings.Luke Plant
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-08-20Fixed #13895 -- Refactored aggregation_regress doctests. Thanks to Alex Gayno...Russell Keith-Magee
2010-08-06Fixed #13092 -- Added support for the "in" operator when dealing with context...Russell Keith-Magee
2010-01-22Fixed #12659 -- Return a more meaningful KeyError message when ContextList lo...Russell Keith-Magee
2010-01-04Modified the way EMAIL_BACKEND is specified to make it consistent with the ne...Russell Keith-Magee
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-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-03-18Fixed #10482 -- Unified access to response.context when inspecting responses ...Russell Keith-Magee
2009-02-28Fixed #10165 -- Use settings.TEST_RUNNER in runtests.pyMalcolm Tredinnick
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-07-18Removed the mysql_old backend. It smells bad and has no friends.Malcolm Tredinnick
2008-07-17Fixed #7751 -- Added check to allow for the fact that autocommit can be a pro...Russell Keith-Magee
2007-12-17Fixed #6134 -- Allow an on-disk SQLite database to be used for tests, if requ...Malcolm Tredinnick
2007-10-21Modified the test harness to respect the LANGUAGE_CODE setting. Also changedMalcolm Tredinnick
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-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-07-26Added support for database cache table in test database.Malcolm Tredinnick