blob: e1eefb847779163c6b95817c63ed7c7fd40c73b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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()
'''
}
|