Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/model_inheritance_regress
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25550 -- Deprecated direct assignment to the ↵Tim Graham2015-10-271-3/+3
| | | | reverse side of a related set.
* Refs #15844 -- Added tests for multi-table inheritance ↵Tim Graham2015-10-031-0/+19
| | | | | | related object filtering efficiency. Fixed in 97774429aeb54df4c09895c07cd1b09e70201f7d.
* Refs #21554 -- Added some assertions to a ↵Richard Mitchell2015-08-161-1/+4
| | | | model_inheritance_regress test.
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-7/+7
| | | | on_delete for ForeignKey/OneToOneField
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-6/+8
|
* Fixed several typos in DjangoAlex Gaynor2014-05-291-1/+1
|
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-3/+3
|
* Further consolidated the model_inheritance tests.Aymeric Augustin2014-04-212-0/+27
|
* Fixed #21413 -- resolve_columns fields misalignmentAnssi Kääriäinen2014-01-121-0/+6
|
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-141-4/+2
|
* Fixed #21554 -- Incorrect SQL generated when using ↵pegler2013-12-062-1/+22
| | | | multiple inheritance.
* PEP8Jason Myers2013-11-031-0/+37
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Fix all violators of E231Alex Gaynor2013-10-262-7/+7
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+1
|
* Fixed E225 pep8 warnings.Tim Graham2013-10-231-1/+1
|
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-212-4/+4
|
* Removed unused local variables in tests.Tim Graham2013-10-191-2/+2
|
* Fixed #20895 -- Made check management command warn if a ↵Alasdair Nicol2013-08-161-4/+4
| | | | | | | BooleanField does not have a default value Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch.
* Fixed #20883 -- Made model inheritance find parent links ↵Loic Bistuer2013-08-132-1/+28
| | | | in abstract parents
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
| | | | | Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-2/+2
| | | | Refs #20680.
* Fixed #19733 - deprecated ModelForms without 'fields' or ↵Luke Plant2013-05-091-0/+2
| | | | | | | | 'exclude', and added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
* Fixed #15124 -- Changed the default for BooleanField.Aymeric Augustin2013-03-241-2/+2
| | | | | Thanks to the many contributors who updated and improved the patch over the life of this ticket.
* Fixed #17502 -- Made joining in inheritance cases consistentAnssi Kääriäinen2013-03-151-0/+17
| | | | | | | | | | | | The original problem was that when filtering two levels up in inheritance chain, Django optimized the join generation so that the middle model was skipped. But then Django generated joins from top to middle to bottom for SELECT clause, and thus there was one extra join (top->middle->bottom + top -> bottom). This case is fixed in master as the filtering optimization is gone. This has the side effect that in some cases there is still extra join if the SELECT clause doesn't contain anything from middle or bottom.
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-263-0/+608