Django

Code

Show
Ignore:
Timestamp:
06/07/08 01:25:59 (7 months ago)
Author:
russellm
Message:

Fixed #5836 -- Corrected the logic in the Test Client when an exception raised by a view is caught and re-raised. Thanks for the report, test case, and fix, Chris Wagner.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/modeltests/test_client/fixtures/testdata.json

    r5677 r7583  
    3535            "date_joined": "2006-12-17 07:03:31" 
    3636        } 
     37    }, 
     38    { 
     39        "pk": "3",  
     40        "model": "auth.user",  
     41        "fields": { 
     42            "username": "staff",  
     43            "first_name": "Staff",  
     44            "last_name": "Member",  
     45            "is_active": true,  
     46            "is_superuser": false,  
     47            "is_staff": true,  
     48            "last_login": "2006-12-17 07:03:31",  
     49            "groups": [],  
     50            "user_permissions": [],  
     51            "password": "sha1$6efc0$f93efe9fd7542f25a7be94871ea45aa95de57161",  
     52            "email": "testclient@example.com",  
     53            "date_joined": "2006-12-17 07:03:31" 
     54        } 
    3755    } 
    3856]