Kaydet (Commit) 0e9587fd authored tarafından Malcolm Tredinnick's avatar Malcolm Tredinnick

Fixed the tests from [8033] to work for the PostgreSQL backends (the primary

key value isn't guaranteed to be the same across all backends). Still some
breakage on MySQL because of the way it treats booleans, but that's another
issue.

Refs #6755.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 6ef47cfe
......@@ -162,16 +162,14 @@ DoesNotExist: ItalianRestaurant matching query does not exist.
# Regression test for #6755
>>> r = Restaurant(serves_pizza=False)
>>> r.save()
>>> r.id
3
>>> r.place_ptr_id
3
>>> r = Restaurant(place_ptr_id=3, serves_pizza=True)
>>> r.id == r.place_ptr_id
True
>>> orig_id = r.id
>>> r = Restaurant(place_ptr_id=orig_id, serves_pizza=True)
>>> r.save()
>>> r.id
3
>>> r.place_ptr_id
3
>>> r.id == orig_id
True
>>> r.id == r.place_ptr_id
True
"""}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment