mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	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" />')
 |