From 43d5c4f41c769054567b5f33283c26eeba808398 Mon Sep 17 00:00:00 2001 From: adrian 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 c3a45ba5..dc108011 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 -- 2.11.4.GIT