Commit 4fc6e517 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

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
parent 7e2b888a
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -13,5 +13,9 @@ class Empty(models.Model):
API_TESTS = """
>>> m = Empty()
>>> m.save()
>>> m2 = Empty()
>>> m2.save()
>>> len(Empty.objects.all())
2

"""