1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Refs #15667 -- Prevented newlines in attrs.html widget rendering.

Removed the trailing newline from widget attrs.html template.
The solution may be revisited by fixing refs #9198 but not
for Django 1.11.

Thanks Dmitry Ivanchenko for the report and Preston Timmons for advice.
This commit is contained in:
Dmitry
2017-01-07 02:11:32 +02:00
committed by Tim Graham
parent 7a6863c338
commit 12cefee5d8
3 changed files with 12 additions and 6 deletions

View File

@@ -1,12 +1,17 @@
from __future__ import unicode_literals
from django.forms import Widget
from django.test import SimpleTestCase
from django.forms.widgets import Input
from .base import WidgetTest
class WidgetTests(SimpleTestCase):
class WidgetTests(WidgetTest):
def test_value_omitted_from_data(self):
widget = Widget()
self.assertIs(widget.value_omitted_from_data({}, {}, 'field'), True)
self.assertIs(widget.value_omitted_from_data({'field': 'value'}, {}, 'field'), False)
def test_no_trailing_newline_in_attrs(self):
self.check_html(Input(), 'name', 'value', strict=True, html='<input type="None" name="name" value="value" />')