Django

Code

Changeset 1546

Show
Ignore:
Timestamp:
12/04/05 21:37:23 (3 years ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/testapp/models/basic.py

    r1545 r1546  
    165165>>> a7 != a8 
    166166True 
     167>>> articles.get_object(id__exact=8) != articles.get_object(id__exact=7) 
     168True 
     169>>> articles.get_object(id__exact=8) == articles.get_object(id__exact=7) 
     170False 
    167171""" 
    168172