summaryrefslogtreecommitdiff
path: root/tests/model_inheritance/tests.py
AgeCommit message (Expand)Author
2026-02-05Refs #33579 -- Added extra tests for NotUpdated exception.Nick Pope
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-01-14Fixed #36093 -- Adjusted unique checks to account for inherited primary keys.Simon Charette
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2023-06-20Refs #34634 -- Fixed creating diamond-shaped MTI objects with ancestors inher...Akash Kumar Sen
2023-06-15Fixed #33414 -- Fixed creating diamond-shaped MTI objects for common ancestor...Akash Kumar Sen
2022-11-02Refs #33984 -- Added test for creating copies of model instances with inherit...Mariusz Felisiak
2022-10-08Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner
2022-10-07Replaced assertQuerysetEqual() to assertSequenceEqual()/assertCountEqual() wh...Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropr...David Smith
2021-06-15Fixed #30427, Fixed #16176 -- Corrected setting descriptor in Field.contribut...Carlton Gibson
2021-02-10Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak
2020-04-15Fixed #31223 -- Added __class_getitem__() to Manager and QuerySet.sobolevn
2020-03-19Fixed #31285 -- Fixed inherited Meta.ordering of "-pk".Jon Dufresne
2020-02-06Fixed typo in tests/model_inheritance/tests.py.Nikita Sobolev
2019-01-30Fixed #30116 -- Dropped support for Python 3.5.Tim Graham
2018-12-22Fixed #29970, #30041 -- Made ModelBase.__new__() pass attrs without contribut...Sergey Fedoseev
2018-07-20Fixed #29568 -- Prevented unnecessary UPDATE queries creating child models.François Dupayrat
2018-07-09Fixed some assertTrue() that were intended to be assertEqual().Sergey Fedoseev
2017-11-29Fixed #28834 -- Followed ancestor links on field cache lookup failure.Simon Charette
2017-10-13Fixed #28695 -- Allowed models to use __init_subclass__().k
2017-07-29Used assertRaisesMessage() to test Django's error messages.Mads Jensen
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-11-10Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za
2016-09-13Fixed #27203 -- Replaced assertQuerysetEqual(..., lambda o: o) with assertSeq...Mads Jensen
2016-05-31Avoided uncessary table creation in model_inheritance tests.Simon Charette
2016-04-08Fixed E128 flake8 warnings in tests/.Tim Graham
2016-03-28Fixed #26413 -- Fixed a regression with abstract model inheritance and explic...Simon Charette
2016-03-14Removed unnecessary filter kwarg from .get() in a test.Adam Alton
2016-01-29Refs #26022 -- Used context manager version of assertRaises in tests.Hasan
2016-01-28Fixed #25354 -- Added class/app_label interpolation for related_query_name.James Pulec
2015-11-19Renamed __unicode__() to __str__() in some test comments.Tim Graham
2015-10-27Fixed #25550 -- Deprecated direct assignment to the reverse side of a related...Tim Graham
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #15321 -- Honored ancestors unique checks.Aron Podrigal
2015-01-18Removed support for syncing apps without migrations per deprecation timeline.Tim Graham
2014-12-03Refs #18586 -- Split up model_inheritance.ModelInheritanceTestAlexander Shchapov
2014-12-03Fixed #20392 -- Added TestCase.setUpTestData()Thomas Chaumeny
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-08-30Fixed #23370 -- defer() + select_related() crashed with inherited models.Akis Kesoglou
2014-05-28Fixed several typos in DjangoAlex Gaynor
2014-04-21Appeased flake8 2.1.0.Aymeric Augustin
2014-04-21Fixed #22402 -- Consolidated model_inheritance tests.Aymeric Augustin
2014-02-10Fixed #17673 -- Forbid field shadowing.Christopher Medrela
2013-08-21Fixed #20946 -- model inheritance + m2m failureAnssi Kääriäinen
2013-08-19PEP 8 cleanupAnssi Kääriäinen
2013-08-19Fixed #12567 -- Incorrect SQL in model inheritance caseAnssi Kääriäinen
2013-08-19Made Model.__eq__ consider proxy models equivalentAnssi Kääriäinen