summaryrefslogtreecommitdiff
path: root/tests/model_forms/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani2020-11-061-20/+20
* Fixed #1891, Fixed #11707 -- Prevented duplicates with limit_choices_to on mu...alvinshaita2020-10-271-0/+67
* Refs #28009 -- Added empty_value tests for CharField subclasses.David Smith2020-09-251-4/+15
* Bumped minimum isort version to 5.1.0.David Smith2020-07-301-1/+1
* Fixed test_clean_does_deduplicate_values on Oracle after e13cfc6dfd4212ef7a40...Mariusz Felisiak2020-06-261-4/+4
* Fixed #31596 -- Changed ForeignKey.validate() to use the base manager.Jon Dufresne2020-06-251-0/+46
* Used assertIs(…, True) in model_forms.tests.ValidationTest.Jon Dufresne2020-05-181-3/+3
* Changed django.forms.ValidationError imports to django.core.exceptions.Valida...François Freitag2020-04-281-3/+2
* Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect f...Hasan Ramezani2020-02-051-0/+17
* Refs #26813 -- Added test for ModelChoiceField.choices when using RadioSelect...Mariusz Felisiak2020-02-051-0/+14
* Fixed #31080 -- Removed redundant type="text/javascript" attribute from <scri...Jon Dufresne2019-12-111-1/+1
* Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne2019-06-281-1/+1
* Fixed #30534 -- Fixed overriding a field's default in ModelForm.cleaned_data().RobertAKARobin2019-06-041-0/+26
* Fixed #30399 -- Changed django.utils.html.escape()/urlize() to use html.escap...Jon Dufresne2019-04-251-7/+7
* Fixed #30302 -- Fixed forms.model_to_dict() result if empty list of fields is...belegnar2019-04-031-0/+1
* Refs #30302 -- Added more tests for forms.model_to_dict().belegnar2019-04-031-0/+3
* Used 4 space hanging indent for dictionaries.Tim Graham2019-01-021-9/+19
* Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette2018-11-271-6/+8
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-1/+1
* Refs #13091 -- Added test for commit=False idiom with partial unique_together...Carlton Gibson2018-07-251-0/+28
* Fixed #28312 -- Made ModelChoiceIterator.__len__() more memory-efficient.François Freitag2018-04-231-1/+1
* Fixed #29279 -- Added renderer argument to ModelForm.Dan Watson2018-03-311-0/+4
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-161-58/+58
* Fixed #29158 -- Fixed len(choices) crash if ModelChoiceField's queryset is a ...François Freitag2018-03-011-1/+1
* Consolidated ModelChoiceField tests.François Freitag2018-03-011-258/+2
* Eliminated the need to modify a model forms test when new test files are added.Tim Graham2018-02-281-6/+2
* Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne2018-01-211-58/+58
* Fixed #29041 -- Changed SelectMultiple's multiple attribute to HTML5 boolean ...Jon Dufresne2018-01-201-8/+8
* Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham2017-08-311-0/+15
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-9/+17
* Fixed #28387 -- Fixed has_changed() for disabled form fields that subclass it.Srinivas Reddy Thatiparthy2017-07-141-0/+8
* Fixed #28345 -- Applied limit_choices_to during ModelForm.__init__().Jon Dufresne2017-06-301-1/+11
* Refs #23919 -- Replaced stray super(ClassName, self) with super().Tom2017-06-101-1/+1
* Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai2017-06-011-1/+19
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-9/+9
* Fixed #27993 -- Fixed model form default fallback for SelectMultiple.heathervm2017-03-311-0/+16
* Fixed #27975 -- Fixed crash if ModelChoiceField's queryset=None.James Beith2017-03-221-0/+11
* Fixed nondeterministic ordering test failure in model_forms.Mariusz Felisiak2017-03-161-1/+1
* Refs #27563 -- Fixed ModelChoiceField.__deepcopy__() so forms don't share a q...Tim Graham2017-03-151-0/+9
* Removed obsolete references to form_for_instance().Tim Graham2017-02-281-2/+0
* Fixed #27758 -- Reallowed AdvancedModelIterator pattern after template widget...Jon Dufresne2017-01-311-0/+37
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-3/+3
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-4/+3
* Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette2017-01-191-6/+6
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-17/+17
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham2017-01-171-35/+6
* Fixed #27370 -- Prevented Select widget from using 'required' with a non-empt...Josef Rousek2016-12-281-2/+2