=== modified file 'tests/modeltests/model_inheritance/models.py'
--- tests/modeltests/model_inheritance/models.py	2008-04-27 02:50:16 +0000
+++ tests/modeltests/model_inheritance/models.py	2008-05-20 21:27:29 +0000
@@ -249,6 +249,17 @@
 >>> list(ItalianRestaurant.objects.values('name', 'rating')) == [d]
 True
 
+# Deleting a child will also delete the parent
+>>> park1.parent.id
+7
+>>> Place.objects.get (id = 7)
+<Place: Main St the place>
+>>> park1.delete ()
+>>> Place.objects.get (id = 7)
+Traceback (most recent call last):
+    ...
+DoesNotExist: Place matching query does not exist.
+
 # select_related works with fields from the parent object as if they were a
 # normal part of the model.
 >>> from django import db

