mirror of https://github.com/django/django.git
Tests to avoid regressions for ticket #2108. See also r3115.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3116 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7e2b888a2d
commit
4fc6e51706
|
@ -13,5 +13,9 @@ class Empty(models.Model):
|
|||
API_TESTS = """
|
||||
>>> m = Empty()
|
||||
>>> m.save()
|
||||
>>> m2 = Empty()
|
||||
>>> m2.save()
|
||||
>>> len(Empty.objects.all())
|
||||
2
|
||||
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue