summaryrefslogtreecommitdiff
path: root/tests/forms_tests
AgeCommit message (Collapse)Author
2015-09-23Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham
2015-09-23Fixed #25410 -- Fixed empty ClearableFileInput crash on Python 2.Tim Graham
Reverted "Fixes #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2" and added a regression test. This reverts commit 5c412dd8a724b263489c1bd7a2fea381460665d7.
2015-09-16Refs #25294 -- Moved BoundField to django.forms.boundfield.Moritz Sichert
2015-09-16Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-09-09Refs #25300 -- Fixed reference to TextInput in a test.Moritz Sichert
2015-08-31Rewrote form widget tests as proper unittests.Preston Timmons
This is preparation for landing the template-based widget rendering patch and goes a long way to making these tests more useful for future development. The old doctest heritage is strong here.
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-08-22Fixed #25300 -- Added unit tests for BoundField.id_for_labelMaxime Lorant
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-07-21Fixed #25129 -- Made model instance defaults work with migrations (refs #24919).Tim Graham
2015-07-21Refs #24919 -- Made test models serializable for migrations.Tim Graham
2015-07-17Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson
Thanks Flavio Curella and Berker Peksag for the initial patch.
2015-07-16Fixed #25078 -- Added support for disabled form fieldsClaude Paroz
Thanks Keryn Knight and Tim Graham for the reviews.
2015-07-14Refs #25085 -- Used more specific assertion in widget test.Tim Graham
2015-07-14Fixed #25085 -- Overrode Select widget's __deepcopy__()Eric Carrillo
2015-07-13Fixed #25108 -- Fixed a test which failed on Pillow 2.9+Yosuke Yasuda
2015-07-06Refs #4960 -- Fixed selenium test failures for CharField strip changes.Tim Graham
2015-07-01Fixed #4960 -- Added "strip" option to CharFieldCurtis
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-16Fixed #24948 -- Fixed crash when uploading bitmap images in forms.ImageFieldAndriy Sokolovskiy
2015-06-06Fixed #12437 -- Added css_classes to Form._html_output()Markus Amalthea Magnuson
2015-06-04Fixed #18166 -- Added form_kwargs support to formsets.Sergei Maertens
By specifying form_kwargs when instantiating the formset, or overriding the `get_form_kwargs` method on a formset class, you can pass extra keyword arguments to the underlying `Form` instances. Includes tests and documentation update.
2015-05-25Fixed #24788 -- Allowed Forms to specify a prefix at the class level.Paweł Marczewski
2015-05-22Refs #9230 -- Added complementary tests for widget iterationsClaude Paroz
2015-05-20Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette
2015-05-06Fixed #24497 -- Added Widget.supports_microseconds attributewdmgsm
2015-05-04Fixes #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2Antonio Garcia-Dominguez
2015-04-28Fixed #24714 -- Used more specific assertions than assertEqual in tests.Alasdair Nicol
2015-04-27Used assertIsInstance in tests.Alasdair Nicol
2015-04-01Adapted form regression test to new translationsClaude Paroz
2015-03-27Fixed #24469 -- Refined escaping of Django's form elements in non-Django ↵Moritz Sichert
templates.
2015-03-16Fixed #5986 -- Added ability to customize order of Form fieldsThomas Tanner
2015-03-05Fixed #24428 -- Fixed has_changed for fields with coercionClaude Paroz
Thanks Carsten Fuchs for the report.
2015-03-01Fixed #17401 -- Made SelectDateWidget.render reflect wrong valueClaude Paroz
Thanks Marcin Wrobel for the initial patch.
2015-02-27Removed binary input test lineClaude Paroz
That line was inconveniently introduced by the committer (me) in 3b966c2b73. Sorry!
2015-02-27Fixed #24229 -- Changed IntegerField to clean floats representing integersJon Dufresne
2015-02-24Fixed #24391 -- Made BoundField.value() cache callable values.Michael Angeletti
2015-02-23Guaranteed removal of temporary files during tests.Aymeric Augustin
Dropped the DJANGO_TEST_TEMP_DIR environment variable. Before this change, proper removal depended on the developer passing dir=os.environ['DJANGO_TEST_TMP_DIR'] to tempfile functions.
2015-02-14Added missing return value to DurationField.prepare_value(); refs #24339.Michael Angeletti
2015-02-14Fixed #24339 -- Fixed crash with empty DurationField form field.Michael Angeletti
2015-02-06Tested DecimalField with scientific notationClaude Paroz
Refs #15775.
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2015-01-28Fixed flake8 warning.Tim Graham
2015-01-27Fixed #24219 -- Moved SelectDateWidget together with the other widgetsLoic Bistuer
and deprecated django.forms.extras. Thanks Berker Peksag and Tim Graham for the reviews.
2015-01-27Cleaned up some forms tests.Loic Bistuer
Thanks Berker Peksag and Tim Graham for the reviews. Refs #24219.
2015-01-20Fixed typos in code comments.Adam Taylor
2015-01-19Removed IPAddressField per deprecation timeline; refs #20439.Tim Graham
2015-01-17Removed support for SplitDateTimeWidget with DateTimeField per deprecation ↵Tim Graham
timeline. refs #8898