summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-08-15 23:29:55 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-08-15 23:29:55 +0000
commitddc156bca2519dfb60974f49d085826d0a778f77 (patch)
treedc21b816ceff7718e8d283aea712d06fb09030ae /tests
parent3b45a40c54993a36e2e56448326553e46a1b40d7 (diff)
Fixed #6970 -- Raise the original `IntegrityError` when all required fields aren't specified in `get_or_create` instead of a misleading `DoesNotExist` error, thanks deadwisdom.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8398 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/get_or_create/models.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/modeltests/get_or_create/models.py b/tests/modeltests/get_or_create/models.py
index 3a1b447c97..5c35bb4bec 100644
--- a/tests/modeltests/get_or_create/models.py
+++ b/tests/modeltests/get_or_create/models.py
@@ -50,4 +50,11 @@ True
False
>>> Person.objects.count()
2
+
+# If you don't specify a value or default value for all required fields, you
+# will get an error.
+>>> p, created = Person.objects.get_or_create(first_name='Tom', last_name='Smith')
+Traceback (most recent call last):
+...
+IntegrityError:...
"""}