Changes between Initial Version and Version 1 of Ticket #28421
- Timestamp:
- Jul 21, 2017, 3:35:26 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28421 – Description
initial v1 1 1 In 2 https://github.com/django/django/blob/master/tests/forms_tests/tests/test_formsets.py#L 4942 https://github.com/django/django/blob/master/tests/forms_tests/tests/test_formsets.py#L509 3 3 4 4 It contains … … 8 8 '\n'.join(form_output), 9 9 """<li>Choice: <input type="text" name="choices-0-choice" value="Calexico" /></li> 10 ) 10 <li>Votes: <input type="number" name="choices-0-votes" value="100" /></li> 11 <li>Delete: <input type="checkbox" name="choices-0-DELETE" /></li> 11 12 }}} 12 13 14 to check the output of formset, and also have 13 15 14 16 {{{ … … 24 26 }}} 25 27 26 and a lot of assert in the same function,maybe we should divide the function into multiple small tests.28 to check the deletion.maybe we should divide the function into multiple small tests.