mirror of
https://github.com/django/django.git
synced 2024-11-20 00:14:08 +00:00
4c30fa905d
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.
17 lines
612 B
Python
17 lines
612 B
Python
from django.forms import FileInput
|
|
|
|
from .base import WidgetTest
|
|
|
|
|
|
class FileInputTest(WidgetTest):
|
|
widget = FileInput()
|
|
|
|
def test_render(self):
|
|
"""
|
|
FileInput widgets never render the value attribute. The old value
|
|
isn't useful if a form is updated or an error occurred.
|
|
"""
|
|
self.check_html(self.widget, 'email', 'test@example.com', html='<input type="file" name="email" />')
|
|
self.check_html(self.widget, 'email', '', html='<input type="file" name="email" />')
|
|
self.check_html(self.widget, 'email', None, html='<input type="file" name="email" />')
|