blob: 1477f153d160fb90c6e1dcbfd42b6d72713c9fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from django.forms import TelInput
from .base import WidgetTest
class TelInputTest(WidgetTest):
widget = TelInput()
def test_render(self):
self.check_html(
self.widget, "telephone", "", html='<input type="tel" name="telephone">'
)
|