[1.2.X] Migrated empty doctests. Thanks to Alex Gaynor.

Backport of r13789 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13806 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-09-12 20:12:23 +00:00
parent cbcdd408c0
commit 411f8dc0d6
2 changed files with 16 additions and 15 deletions

View File

@ -7,20 +7,6 @@ no fields.
from django.db import models from django.db import models
class Empty(models.Model): class Empty(models.Model):
pass pass
__test__ = {'API_TESTS':"""
>>> m = Empty()
>>> m.id
>>> m.save()
>>> m2 = Empty()
>>> m2.save()
>>> len(Empty.objects.all())
2
>>> m.id is not None
True
>>> existing = Empty(m.id)
>>> existing.save()
"""}

View File

@ -0,0 +1,15 @@
from django.test import TestCase
from models import Empty
class EmptyModelTests(TestCase):
def test_empty(self):
m = Empty()
self.assertEqual(m.id, None)
m.save()
m2 = Empty.objects.create()
self.assertEqual(len(Empty.objects.all()), 2)
self.assertTrue(m.id is not None)
existing = Empty(m.id)
existing.save()