summaryrefslogtreecommitdiff
path: root/tests/test_utils
Commit message (Expand)AuthorAgeFilesLines
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-8/+21
* Fixed #23727 -- Inhibited the post_migrate signal when using serialized_rollb...Tommy Beadle2015-08-241-0/+28
* Fixed #25191 -- Added string diff to SimpleTestCase.assertXMLEqual() message.Caio Ariede2015-08-041-0/+13
* Refs #25176 -- Fixed typo in tests/test_utils/tests.pyTim Graham2015-08-011-1/+1
* Fixed #25176 -- Prevented TestCase.setUpTestData() exception from leaking tra...Adam Chainz2015-08-011-0/+33
* Fixed #25188 -- Improved message raised by SimpleTestCase.assertRaisesMessage().Tim Graham2015-07-311-0/+14
* Fixed #25190 -- Deprecated callable_obj parameter to assertRaisesMessage().Tim Graham2015-07-301-2/+16
* Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella2015-07-271-2/+2
* Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette2015-05-201-7/+7
* Fixed #24652 -- Disallowed query execution in SimpleTestCase subclasses.Simon Charette2015-05-201-0/+18
* Added backwards compatibility for assertRaisesMessage callable_obj param.Tim Graham2015-05-181-0/+6
* Sorted imports with isort; refs #23860.Tim Graham2015-02-062-3/+4
* Fixed #24197 -- Added clearing of staticfiles caches on settings changes duri...mlavin2015-02-041-0/+56
* Fixed typo in test_utils comment.Tim Graham2014-12-241-1/+1
* Fixed #23933 -- Made override_settings(DATABASE_ROUTERS) affect the master ro...wrwrwr2014-12-011-1/+9
* Fixed #23300 -- Made assertTemplateUsed throw an error on responses not fetch...Davide Ceretti2014-11-031-0/+12
* Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag2014-11-031-9/+9
* Avoided using private API get_template_from_string.Aymeric Augustin2014-10-311-2/+2
* Fixed #23600 -- Made default_storage aware of more settings changes.Duncan Parkes2014-10-081-0/+39
* Fixed flake8 warnings.Tim Graham2014-09-301-0/+3
* Fixed #23567 -- Made assertQuerysetEqual check Counter equality when ordered=...Thomas Chaumeny2014-09-292-1/+43
* Allowed skipIf/UnlessDBFeature to accept several feature stringsClaude Paroz2014-08-261-2/+59
* Fixed #22572 -- override_settings(ROOT_URLCONF) didn't clear urlresolvers._ur...Loic Bistuer2014-05-052-15/+32
* Fixed #22465 -- New assertion assertJSONNotEqualamatellanes2014-04-181-0/+45
* Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley2014-04-161-1/+1
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-4/+4
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-032-8/+8
* Removed django.test.simple and django.test._doctest per deprecation timeline.Tim Graham2014-03-212-88/+1
* Fixed #21518 -- Made override_settings(ROOT_URLCONF) clear the resolver cache.Chris Wilson2014-02-071-1/+33
* Fixed #21462 -- Made `assertNumQueries` print executed queries on failure.Dominic Rodger2013-12-111-0/+1
* Fixed E124 pep8 warnings.Loic Bistuer2013-12-101-3/+1
* Flake8 fix -- correct number of newlines between top level definitionsAlex Gaynor2013-11-081-0/+1
* Fixed #17529 -- get_template_from_string default arguments breakUnai Zalakain2013-11-083-0/+13
* Fixing E302 ErrorsJason Myers2013-11-021-0/+1
* Fixed all the E203 violationsAlex Gaynor2013-10-261-1/+1
* Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol2013-10-171-3/+3
* Removed unnecessary semicolons.Tim Graham2013-10-101-1/+1
* Partial revert of 165f44aa.Aymeric Augustin2013-09-221-32/+39
* Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin2013-09-021-1/+1
* Combine consecutive with statementsClaude Paroz2013-08-161-39/+32
* Removed most of absolute_import importsClaude Paroz2013-07-293-6/+2
* Fixed #18551 -- Enabled skipIfDBFeature/skipUnlessDBFeature to decorate a classClaude Paroz2013-07-191-3/+25
* Removed tests for django.utils.unittest vs. unittest.Aymeric Augustin2013-07-011-2/+2
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-2/+3
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-2/+2
* More import removalsClaude Paroz2013-06-291-1/+0
* Removed warnings level handling code as per deprecation TL.Ramiro Morales2013-06-281-31/+0
* Fixed #20548 -- Removed all PendingDeprecationWarnings from django test suiteMarc Tamlyn2013-06-141-3/+3
* Used a Python 3 compatible StringIO in test_utilsClaude Paroz2013-04-131-2/+1
* Modified test_utils to work with unittest2 discovery.Preston Timmons2013-04-122-76/+87