mirror of
				https://github.com/django/django.git
				synced 2025-10-30 00:56:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			620 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			620 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">')
 |