mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@16975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			25 lines
		
	
	
		
			505 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			505 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| Tests for field subclassing.
 | |
| """
 | |
| 
 | |
| from __future__ import absolute_import
 | |
| 
 | |
| from django.db import models
 | |
| from django.utils.encoding import force_unicode
 | |
| 
 | |
| from .fields import SmallField, SmallerField, JSONField
 | |
| 
 | |
| 
 | |
| class MyModel(models.Model):
 | |
|     name = models.CharField(max_length=10)
 | |
|     data = SmallField('small field')
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return force_unicode(self.name)
 | |
| 
 | |
| class OtherModel(models.Model):
 | |
|     data = SmallerField()
 | |
| 
 | |
| class DataModel(models.Model):
 | |
|     data = JSONField()
 |