0
0
mirror of https://github.com/django/django.git synced 2024-11-22 11:57:34 +01:00

Added two more unit tests for #982 (which still pass under Python 2.4). Refs #982

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1546 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-12-05 03:37:23 +00:00
parent 027f2a378a
commit 65c1a9f1c9

View File

@ -164,6 +164,10 @@ False
True
>>> a7 != a8
True
>>> articles.get_object(id__exact=8) != articles.get_object(id__exact=7)
True
>>> articles.get_object(id__exact=8) == articles.get_object(id__exact=7)
False
"""
from django.conf import settings