mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
185848a526
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6453 bcc190cf-cafb-0310-a4f2-bffc1f526a37
13 lines
255 B
Python
13 lines
255 B
Python
from django.db import models
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
class TestModel(models.Model):
|
|
text = models.CharField(max_length=10, default=_('Anything'))
|
|
|
|
__test__ = {'API_TESTS': '''
|
|
>>> tm = TestModel()
|
|
>>> tm.save()
|
|
'''
|
|
}
|
|
|