mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Migrated reserved_names doctests. Thanks to Eric Florenzano.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13830 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -22,33 +22,4 @@ class Thing(models.Model):
|
||||
db_table = 'select'
|
||||
|
||||
def __unicode__(self):
|
||||
return self.when
|
||||
|
||||
__test__ = {'API_TESTS':"""
|
||||
>>> import datetime
|
||||
>>> day1 = datetime.date(2005, 1, 1)
|
||||
>>> day2 = datetime.date(2006, 2, 2)
|
||||
>>> t = Thing(when='a', join='b', like='c', drop='d', alter='e', having='f', where=day1, has_hyphen='h')
|
||||
>>> t.save()
|
||||
>>> print t.when
|
||||
a
|
||||
|
||||
>>> u = Thing(when='h', join='i', like='j', drop='k', alter='l', having='m', where=day2)
|
||||
>>> u.save()
|
||||
>>> print u.when
|
||||
h
|
||||
|
||||
>>> Thing.objects.order_by('when')
|
||||
[<Thing: a>, <Thing: h>]
|
||||
>>> v = Thing.objects.get(pk='a')
|
||||
>>> print v.join
|
||||
b
|
||||
>>> print v.where
|
||||
2005-01-01
|
||||
|
||||
>>> Thing.objects.dates('where', 'year')
|
||||
[datetime.datetime(2005, 1, 1, 0, 0), datetime.datetime(2006, 1, 1, 0, 0)]
|
||||
|
||||
>>> Thing.objects.filter(where__month=1)
|
||||
[<Thing: a>]
|
||||
"""}
|
||||
return self.when
|
||||
Reference in New Issue
Block a user