mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			722 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			722 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.forms.widgets import Input
 | |
| 
 | |
| from .base import WidgetTest
 | |
| 
 | |
| 
 | |
| class InputTests(WidgetTest):
 | |
|     def test_attrs_with_type(self):
 | |
|         attrs = {"type": "date"}
 | |
|         widget = Input(attrs)
 | |
|         self.check_html(
 | |
|             widget, "name", "value", '<input type="date" name="name" value="value">'
 | |
|         )
 | |
|         # reuse the same attrs for another widget
 | |
|         self.check_html(
 | |
|             Input(attrs),
 | |
|             "name",
 | |
|             "value",
 | |
|             '<input type="date" name="name" value="value">',
 | |
|         )
 | |
|         attrs["type"] = "number"  # shouldn't change the widget type
 | |
|         self.check_html(
 | |
|             widget, "name", "value", '<input type="date" name="name" value="value">'
 | |
|         )
 |