mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
5ba743e262
This commit revertsf44c4a5d0f
and39bbd165
. django.test.simple will be updated in a separate commit as it requires invasive changes.
16 lines
377 B
Python
16 lines
377 B
Python
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()
|
|
Empty.objects.create()
|
|
self.assertEqual(len(Empty.objects.all()), 2)
|
|
self.assertTrue(m.id is not None)
|
|
existing = Empty(m.id)
|
|
existing.save()
|