summaryrefslogtreecommitdiff
path: root/tests/model_inheritance/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33984 -- Added test for creating copies of model instances with inherit...Mariusz Felisiak2022-11-021-0/+17
* Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner2022-10-081-11/+11
* Replaced assertQuerysetEqual() to assertSequenceEqual()/assertCountEqual() wh...Mariusz Felisiak2022-10-071-3/+3
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-96/+144
* Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropr...David Smith2021-07-291-1/+1
* Fixed #30427, Fixed #16176 -- Corrected setting descriptor in Field.contribut...Carlton Gibson2021-06-151-0/+31
* Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak2021-02-101-3/+0
* Fixed #31223 -- Added __class_getitem__() to Manager and QuerySet.sobolevn2020-04-151-0/+8
* Fixed #31285 -- Fixed inherited Meta.ordering of "-pk".Jon Dufresne2020-03-191-1/+14
* Fixed typo in tests/model_inheritance/tests.py.Nikita Sobolev2020-02-061-1/+1
* Fixed #30116 -- Dropped support for Python 3.5.Tim Graham2019-01-301-4/+0
* Fixed #29970, #30041 -- Made ModelBase.__new__() pass attrs without contribut...Sergey Fedoseev2018-12-221-2/+17
* Fixed #29568 -- Prevented unnecessary UPDATE queries creating child models.François Dupayrat2018-07-201-0/+18
* Fixed some assertTrue() that were intended to be assertEqual().Sergey Fedoseev2018-07-091-2/+2
* Fixed #28834 -- Followed ancestor links on field cache lookup failure.Simon Charette2017-11-291-0/+16
* Fixed #28695 -- Allowed models to use __init_subclass__().k2017-10-131-0/+19
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-3/+9
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-3/+2
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-7/+5
* Fixed #27203 -- Replaced assertQuerysetEqual(..., lambda o: o) with assertSeq...Mads Jensen2016-09-131-4/+2
* Avoided uncessary table creation in model_inheritance tests.Simon Charette2016-05-311-42/+30
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-4/+2
* Fixed #26413 -- Fixed a regression with abstract model inheritance and explic...Simon Charette2016-03-281-2/+18
* Removed unnecessary filter kwarg from .get() in a test.Adam Alton2016-03-141-1/+1
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-20/+14
* Fixed #25354 -- Added class/app_label interpolation for related_query_name.James Pulec2016-01-281-0/+9
* Renamed __unicode__() to __str__() in some test comments.Tim Graham2015-11-191-1/+1
* Fixed #25550 -- Deprecated direct assignment to the reverse side of a related...Tim Graham2015-10-271-2/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+4
* Fixed #15321 -- Honored ancestors unique checks.Aron Podrigal2015-02-031-2/+32
* Removed support for syncing apps without migrations per deprecation timeline.Tim Graham2015-01-181-1/+1
* Refs #18586 -- Split up model_inheritance.ModelInheritanceTestAlexander Shchapov2014-12-031-133/+135
* Fixed #20392 -- Added TestCase.setUpTestData()Thomas Chaumeny2014-12-031-7/+14
* Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-031-1/+1
* Fixed #23370 -- defer() + select_related() crashed with inherited models.Akis Kesoglou2014-08-301-0/+37
* Fixed several typos in DjangoAlex Gaynor2014-05-281-1/+1
* Appeased flake8 2.1.0.Aymeric Augustin2014-04-211-1/+1
* Fixed #22402 -- Consolidated model_inheritance tests.Aymeric Augustin2014-04-211-2/+40
* Fixed #17673 -- Forbid field shadowing.Christopher Medrela2014-02-101-33/+1
* Fixed #20946 -- model inheritance + m2m failureAnssi Kääriäinen2013-08-211-1/+15
* PEP 8 cleanupAnssi Kääriäinen2013-08-191-26/+36
* Fixed #12567 -- Incorrect SQL in model inheritance caseAnssi Kääriäinen2013-08-191-0/+24
* Made Model.__eq__ consider proxy models equivalentAnssi Kääriäinen2013-08-191-0/+5
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
* Fixed #16649 -- Refactored save_base logicAnssi Kääriäinen2013-03-141-1/+1
* Import `CaptureQueriesContext` from its original module.Simon Charette2013-03-021-1/+1
* Fixed #10399 -- Tested that o2o field updates are not constrained by an inner...Simon Charette2013-03-021-1/+25
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-261-0/+296