Changes between Initial Version and Version 1 of Ticket #21953
- Timestamp:
- Feb 4, 2014, 5:18:57 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21953
- Property Severity Normal → Release blocker
-
Ticket #21953 – Description
initial v1 7 7 (I know that the two different test functions do not return the same objects - this is just test code) 8 8 9 ---------------MODEL----------------- 9 model: 10 {{{ 10 11 from django.db import models 11 12 … … 16 17 ordering = ["id"] 17 18 app_label = 'app1' 19 }}} 18 20 19 --------------TEST----------------- 21 test: 22 {{{ 20 23 import os 21 24 import sys … … 52 55 customer = GetCustomer('Steve') 53 56 del customer 57 }}}