Changes between Initial Version and Version 1 of Ticket #28421


Ignore:
Timestamp:
Jul 21, 2017, 3:35:26 AM (7 years ago)
Author:
Windson yang
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28421 – Description

    initial v1  
    11In
    2 https://github.com/django/django/blob/master/tests/forms_tests/tests/test_formsets.py#L494
     2https://github.com/django/django/blob/master/tests/forms_tests/tests/test_formsets.py#L509
    33
    44It contains
     
    88            '\n'.join(form_output),
    99            """<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>
    1112}}}
    1213
     14to check the output of formset, and also have
    1315
    1416{{{
     
    2426}}}
    2527
    26 and a lot of assert in the same function, maybe we should divide the function into multiple small tests.
     28to check the deletion.maybe we should divide the function into multiple small tests.
Back to Top