Ticket #9615: missing_call.patch
File missing_call.patch, 552 bytes (added by , 16 years ago) |
---|
-
tests/modeltests/order_with_respect_to/models.py
68 68 >>> id_list = [o.pk for o in q1.answer_set.all()] 69 69 >>> x = id_list.pop() 70 70 >>> id_list.insert(-1, x) 71 >>> a5.question.get_answer_order == id_list71 >>> a5.question.get_answer_order() == id_list 72 72 False 73 73 >>> a5.question.set_answer_order(id_list) 74 74 >>> q1.answer_set.all()