django/tests/forms_tests/widget_tests
Mariusz Felisiak c5cd878382
Refs #33476 -- Refactored problematic code before reformatting by Black.
In these cases Black produces unexpected results, e.g.

def make_random_password(
    self,
    length=10,
    allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789',
):

or

cursor.execute("""
SELECT ...
""",
    [table name],
)
2022-02-03 11:20:46 +01:00
..
__init__.py Rewrote form widget tests as proper unittests. 2015-08-31 23:03:55 -05:00
base.py Fixed #30399 -- Changed django.utils.html.escape()/urlize() to use html.escape()/unescape(). 2019-04-25 15:09:07 +02:00
test_checkboxinput.py Fixed #31073 -- Prevented CheckboxInput.get_context() from mutating attrs. 2019-12-10 12:27:50 +01:00
test_checkboxselectmultiple.py Refs #32338 -- Added Boundfield.legend_tag(). 2021-12-09 07:16:33 +01:00
test_clearablefileinput.py Fixed #31536 -- Fixed rendering of disabled AdminFileWidget and ClearableFileInput. 2020-06-01 12:25:25 +02:00
test_dateinput.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_datetimeinput.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_fileinput.py Fixed #31118 -- Made FileInput to avoid the required attribute when initial data exists. 2020-01-08 09:15:31 +01:00
test_hiddeninput.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00
test_input.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00
test_multiplehiddeninput.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00
test_multiwidget.py Refs #33476 -- Refactored problematic code before reformatting by Black. 2022-02-03 11:20:46 +01:00
test_nullbooleanselect.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_numberinput.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_passwordinput.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00
test_radioselect.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_select.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_selectdatewidget.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_selectmultiple.py Fixed #29273 -- Prevented initial selection of empty choice in multiple choice widgets. 2018-04-02 08:52:53 -04:00
test_splitdatetimewidget.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00
test_splithiddendatetimewidget.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_textarea.py Rewrote form widget tests as proper unittests. 2015-08-31 23:03:55 -05:00
test_textinput.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00
test_timeinput.py Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
test_widget.py Fixed #29038 -- Removed closing slash from HTML void tags. 2018-01-21 02:09:10 -05:00