From 65c1a9f1c95670425334af0750ada2ae878d33fc Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 5 Dec 2005 03:37:23 +0000 Subject: [PATCH] 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 --- tests/testapp/models/basic.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/testapp/models/basic.py b/tests/testapp/models/basic.py index c3a45ba5bd..dc108011e0 100644 --- a/tests/testapp/models/basic.py +++ b/tests/testapp/models/basic.py @@ -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