summaryrefslogtreecommitdiff
path: root/tests/forms_tests
Commit message (Expand)AuthorAgeFilesLines
* Simplified a ClearableFileInput test.Tim Graham2016-05-141-10/+9
* Refs #15667 -- Removed choices argument from some RendererMixin methods.Tim Graham2016-04-283-31/+47
* Fixed #26534 -- Fixed boolean form fields has_changed() with hidden input.David Sanders2016-04-242-0/+12
* Fixed #26533 -- Renamed Widget._format_value() to format_value().Tim Graham2016-04-232-76/+76
* Moved declaration of test form inside the relevant test for clarity.Loïc Bistuer2016-04-221-29/+27
* Fixed #26528 -- Allowed any iterable (e.g. tuple) as validators kwarg for for...Loïc Bistuer2016-04-221-0/+14
* Fixed #22383 -- Added support for HTML5 required attribute on required form f...Jon Dufresne2016-04-2112-440/+585
* Fixed #26516 -- Added minlength attribute when forms.CharField.min_length is ...Jon Dufresne2016-04-193-4/+17
* Refs #26502 -- Added choices to Form.__getitem__() KeyError message.Tim Graham2016-04-141-3/+2
* Split form's test_fields.py into different files.Berker Peksag2016-04-1129-1897/+2022
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-085-49/+68
* Fixed W503 flake8 warnings.Tim Graham2016-04-041-10/+10
* Removed duplicate definition of ChoiceFormSet.Jon Dufresne2016-03-251-7/+0
* Fixed #25364 -- Added generic way to test on all browsers supported by selenium.Akshesh2016-03-151-3/+3
* Fixed #26267 -- Fixed BoundField to reallow slices of subwidgets.Jon Dufresne2016-02-241-0/+14
* Fixed #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2Berker Peksag2016-02-151-0/+39
* Fixed #26212 -- Made forms.FileField and translation.lazy_number() picklable.Alexey Kotlyarov2016-02-151-0/+3
* Fixed #25731 -- Removed unused choices kwarg for Select.render()jpic2016-02-022-40/+24
* Refs #26022 -- Used context manager version of assertRaisesMessage in tests.Hasan2016-01-293-364/+467
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-295-64/+120
* Fixed #26129 -- Made invalid forms display initial values of disabled fields.Tim Graham2016-01-281-0/+8
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-1/+2
* Fixed #26104 -- Fixed TypeError when passing number to forms.DurationField.Alexander Gaevsky2016-01-221-0/+4
* Changed `action="."` to `action=""` in tests and docs.Luke Plant2016-01-211-1/+1
* Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek2015-12-311-1/+1
* Fixed #26017 -- Removed a dependency on the name of the top-level tests direc...Raphaël Hertzog2015-12-301-7/+7
* Fixed #25942 -- Fixed TypedChoiceField.has_changed with nullable fieldClaude Paroz2015-12-171-0/+8
* Fixed many spelling mistakes in code, comments, and docs.Josh Soref2015-12-032-2/+2
* Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.Marti Raudsepp2015-11-091-4/+10
* Fixed #25550 -- Deprecated direct assignment to the reverse side of a related...Tim Graham2015-10-271-1/+2
* Fixed #25567 -- Removed obsolete MEDIA_URL fallback in Media.absolute_pathClaude Paroz2015-10-191-526/+6
* Refs #23162 -- Removed forms.Field._has_changed() method.Tim Graham2015-09-231-5/+1
* Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham2015-09-231-7/+0
* Fixed #25410 -- Fixed empty ClearableFileInput crash on Python 2.Tim Graham2015-09-231-19/+0
* Refs #25294 -- Moved BoundField to django.forms.boundfield.Moritz Sichert2015-09-161-0/+3
* Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert2015-09-161-0/+11
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-1210-525/+1675
* Refs #25300 -- Fixed reference to TextInput in a test.Moritz Sichert2015-09-091-2/+2
* Rewrote form widget tests as proper unittests.Preston Timmons2015-08-3126-1825/+2270
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-312-7/+0
* Fixed #25300 -- Added unit tests for BoundField.id_for_labelMaxime Lorant2015-08-221-0/+19
* Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella2015-07-272-2/+4
* Fixed #25129 -- Made model instance defaults work with migrations (refs #24919).Tim Graham2015-07-211-1/+1
* Refs #24919 -- Made test models serializable for migrations.Tim Graham2015-07-211-14/+54
* Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson2015-07-171-0/+10
* Fixed #25078 -- Added support for disabled form fieldsClaude Paroz2015-07-162-0/+41
* Refs #25085 -- Used more specific assertion in widget test.Tim Graham2015-07-141-3/+3
* Fixed #25085 -- Overrode Select widget's __deepcopy__()Eric Carrillo2015-07-141-0/+15
* Fixed #25108 -- Fixed a test which failed on Pillow 2.9+Yosuke Yasuda2015-07-131-10/+14
* Refs #4960 -- Fixed selenium test failures for CharField strip changes.Tim Graham2015-07-061-1/+10