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

Fixed #35598 -- Added SearchInput widget.

This commit is contained in:
Jeremy Thompson
2024-07-17 16:50:01 +01:00
committed by Sarah Boyce
parent 3f88089069
commit 30a60e8492
7 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
from django.forms import SearchInput
from .base import WidgetTest
class SearchInputTest(WidgetTest):
widget = SearchInput()
def test_render(self):
self.check_html(
self.widget, "search", "", html='<input type="search" name="search">'
)