summaryrefslogtreecommitdiff
path: root/django/test/testcases.py
AgeCommit message (Expand)Author
2012-02-03Made a bunch more edits up until [17418]Adrian Holovaty
2012-02-01Improved the fix of r17416 so it actually works on all platforms. Refs #17469.Aymeric Augustin
2012-02-01Fixed #17469 -- Prevented a double URL-to-filesystem path translation in the ...Aymeric Augustin
2012-01-31Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...Carl Meyer
2012-01-31Fixed #17604 - Added context-manager capability to assertTemplateUsed and ass...Carl Meyer
2012-01-07Fixed #17499 -- Ensured assertFieldOutput works for fields that customize the...Aymeric Augustin
2011-12-29Added the ability to specify multiple ports available for the `LiveServerTest...Julien Phalip
2011-12-22Fixed #2879 -- Added support for the integration with Selenium and other in-b...Julien Phalip
2011-10-22Fixed #15826 -- Made `assertContains` and `assertNotContains` work with `Simp...Julien Phalip
2011-10-05Fixed #16990 -- Fixed a couple of small docstring typos in the `django/test/t...Julien Phalip
2011-08-23Add the ability to do unordered comparisons in assertQuerysetEqual.Malcolm Tredinnick
2011-08-23Fixed #15838 -- Promoted assertFieldOutput to a general test utility. Thanks ...Russell Keith-Magee
2011-08-13Fixed #14503 -- Unified multiple implementations of test cases assert* method...Ramiro Morales
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