mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	assert_ -> assertTrue assertEquals -> assertEqual failUnless -> assertTrue For full details, see http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations git-svn-id: http://code.djangoproject.com/svn/django/trunk@15728 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			22 lines
		
	
	
		
			722 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			722 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.utils import unittest
 | |
| 
 | |
| from django.core.exceptions import ValidationError
 | |
| 
 | |
| class ValidationTestCase(unittest.TestCase):
 | |
|     def assertFailsValidation(self, clean, failed_fields):
 | |
|         self.assertRaises(ValidationError, clean)
 | |
|         try:
 | |
|             clean()
 | |
|         except ValidationError, e:
 | |
|             self.assertEqual(sorted(failed_fields), sorted(e.message_dict.keys()))
 | |
|     
 | |
|     def assertFieldFailsValidationWithMessage(self, clean, field_name, message):
 | |
|         self.assertRaises(ValidationError, clean)
 | |
|         try:
 | |
|             clean()
 | |
|         except ValidationError, e:
 | |
|             self.assertTrue(field_name in e.message_dict)
 | |
|             self.assertEqual(message, e.message_dict[field_name])
 | |
| 
 | |
| 
 |