Commit 0e9587fd authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

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
parent 6ef47cfe
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -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

"""}