summaryrefslogtreecommitdiff
path: root/django/test/testcases.py
AgeCommit message (Expand)Author
2011-08-02Fixed #16372 -- Changed strategy implemented in r16369 to fix #14049 to avoid...Ramiro Morales
2011-07-29Fixed #16437 -- Removed old code comment from testcases module. Thanks, teraom.Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-11Fixed #14049 -- Made our TestCase subclasses not load database fixtures (nor ...Ramiro Morales
2011-05-18Fixed #15561 -- Extended test setting override code added in r16165 with a de...Jannis Leidel
2011-05-06Added TestCase.settings context manager to easily override settings in test m...Jannis Leidel
2011-03-28Move the Python 2.5 specific tests out of their own special files now that 2....Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-01-20Fixed #14774 -- the test client and assertNumQueries didn't work well togethe...Alex Gaynor
2010-12-04Removed all usages of deprecated TestCase methods (self.fail*). This removed...Alex Gaynor
2010-11-11Fixed #14508 - test suite silences warnings.Luke Plant
2010-11-06Removed the use of a deprecated unittest method.Alex Gaynor
2010-10-31Ensure that assertNumQueries doesn't swallow exceptions inside the function.Alex Gaynor
2010-10-30Reordered the shutdown process for tests so that all tests force a connection...Russell Keith-Magee
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 #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-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-08-06Fixed #13615 -- Clarified test assertion text to avoid confusion when respons...Russell Keith-Magee
2010-05-28Fixed #13634 -- Migrated aggregation tests to use unittest. This removes a fl...Russell Keith-Magee
2010-02-13Fixed #12825 -- Corrected a missing space in a test case error message. Thank...Russell Keith-Magee
2010-01-22Fixed #10314 -- Added a message prefix argument to Django's test assertions. ...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-04-22Fixed #10831 -- Prevented code running under a to-be-rolled-back test from ca...Karen Tracey
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-20Python 2.3 fix: assertTrue *still* doesn't exist in Python 2.3Malcolm Tredinnick
2009-02-27Fixed #4476 -- Added a ``follow`` option to the test client request methods. ...Russell Keith-Magee
2009-01-16Fixed #8138 -- Changed django.test.TestCase to rollback tests (when the datab...Karen Tracey
2009-01-15Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...Russell Keith-Magee
2008-07-20Fixed #7441 -- Removed some of the shortcuts in the doctest output comparator...Russell Keith-Magee
2008-07-19Fixed #7441 - Improved the doctest OutputChecker to be more lenient with JSON...Russell Keith-Magee
2008-06-30Fixed #7521 -- Added the ability to customize ROOT_URLCONF for the duration o...Russell Keith-Magee
2008-06-06Fixed #7165 -- Added an assertNotContains() method to the test client. Thanks...Russell Keith-Magee
2008-02-03Fixed #6478 -- Allow tests to be interrupted with system exits and ^C. Thanks,Malcolm Tredinnick
2008-01-28Fixed typo in testcases module.Gary Wilson Jr
2008-01-18Fixed #6031 -- Added error handling for _pre_test in django.test.TestCase; ex...Russell Keith-Magee
2007-11-23Corrected a docstring in django.test.TestCase to match the actual behavior.Russell Keith-Magee
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-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