mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Merged regressiontests and modeltests into the test root.
This commit is contained in:
parent
b3d2ccb5bf
commit
89f40e3624
1050 changed files with 0 additions and 0 deletions
33
tests/save_delete_hooks/tests.py
Normal file
33
tests/save_delete_hooks/tests.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
from __future__ import absolute_import
|
||||
|
||||
from django.test import TestCase
|
||||
from django.utils import six
|
||||
|
||||
from .models import Person
|
||||
|
||||
|
||||
class SaveDeleteHookTests(TestCase):
|
||||
def test_basic(self):
|
||||
p = Person(first_name="John", last_name="Smith")
|
||||
self.assertEqual(p.data, [])
|
||||
p.save()
|
||||
self.assertEqual(p.data, [
|
||||
"Before save",
|
||||
"After save",
|
||||
])
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
Person.objects.all(), [
|
||||
"John Smith",
|
||||
],
|
||||
six.text_type
|
||||
)
|
||||
|
||||
p.delete()
|
||||
self.assertEqual(p.data, [
|
||||
"Before save",
|
||||
"After save",
|
||||
"Before deletion",
|
||||
"After deletion",
|
||||
])
|
||||
self.assertQuerysetEqual(Person.objects.all(), [])
|
Loading…
Add table
Add a link
Reference in a new issue