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
1 changed files with 4 additions and 0 deletions

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