summaryrefslogtreecommitdiff
path: root/tests/model_forms/models.py
AgeCommit message (Expand)Author
2022-04-18Fixed various tests on MySQL with MyISAM storage engine.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-09-09Fixed #33084 -- Removed incorrect system check for ManyToManyField with limit...Hasan Ramezani
2020-10-27Fixed #1891, Fixed #11707 -- Prevented duplicates with limit_choices_to on mu...alvinshaita
2020-09-25Refs #28009 -- Added empty_value tests for CharField subclasses.David Smith
2020-06-25Fixed #31596 -- Changed ForeignKey.validate() to use the base manager.Jon Dufresne
2020-02-05Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect f...Hasan Ramezani
2018-12-27Followed style guide for model attribute ordering.Matt Wiens
2018-12-10Moved choices inside of test models per coding style.Manan
2018-02-28Eliminated the need to modify a model forms test when new test files are added.Tim Graham
2017-06-01Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai
2017-02-28Removed obsolete references to form_for_instance().Tim Graham
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham
2016-09-22Fixed #27186 -- Fixed model form default fallback for MultiWidget, FileInput,...Tim Graham
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-09-09Refs #25415 -- Fixed invalid models in the test suite.Adam Chainz
2016-08-24Fixed #27039 -- Fixed empty data fallback to model field default in model forms.Tim Graham
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
2016-04-08Fixed E128 flake8 warnings in tests/.Tim Graham
2016-02-19Fixed #25349 -- Allowed a ModelForm to unset a fields with blank=True, requir...haxoza
2015-09-07Fixed #24706 -- Made ModelForm._post_clean() handle a ValidationError raised ...Keryn Knight
2015-08-07Fixed #25241 -- Corrected ModelForm.save() error message when saving invalid ...Tim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella
2015-03-05Fixed #24428 -- Fixed has_changed for fields with coercionClaude Paroz
2015-02-23Guaranteed removal of temporary files during tests.Aymeric Augustin
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-12-13Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall
2014-11-21Fixed #23865 -- documented how to assign errors to a field in Model.clean()Alasdair Nicol
2014-07-26Fixed #22979 -- Moved bug* testsTushar Bhatia
2014-06-04Fixed #13776 -- Fixed ModelForm.is_valid() exception with non-nullable FK and...Anubhav Joshi
2014-03-21Removed hard-coded help_text for ManyToManyFields that use a SelectMultiple w...Tim Graham
2014-03-21Removed PIL compatability layer per deprecation timeline.Tim Graham
2014-03-14Merged model_forms_regress with model_forms testsClaude Paroz
2014-03-14Fixed #6103 -- Splitted tests in model_forms testsClaude Paroz
2014-02-11Fixed #2445 -- Allowed limit_choices_to attribute to be a callable.Christopher Adams
2013-11-02PEP8 cleanupJason Myers
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-23Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol
2013-08-06Fixed #16986 -- Model.clean() can report errors on individual fields.Loic Bistuer
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ...Loic Bistuer
2013-06-10Revert "Began implementing a shared set of test models to speed up tests."Florian Apolloner
2013-05-28Fixed #20228 - Documented unique_for_date and exclude behavior.Tim Graham
2013-05-23Made fix for #9321 less buggy and more effective.Ramiro Morales