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:
Malcolm Tredinnick 2006-06-08 15:15:27 +00:00
parent 7e2b888a2d
commit 4fc6e51706
1 changed files with 4 additions and 0 deletions

View File

@ -13,5 +13,9 @@ class Empty(models.Model):
API_TESTS = """
>>> m = Empty()
>>> m.save()
>>> m2 = Empty()
>>> m2.save()
>>> len(Empty.objects.all())
2
"""