mirror of
https://github.com/django/django.git
synced 2025-11-01 20:31:40 +00:00
Fixed #12692 - Properly handle the extra clause of admin inline formsets. Also fixes #12703, second error.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12369 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f70a0882a3
commit
9555f2be9d
12 changed files with 186 additions and 88 deletions
|
|
@ -10,6 +10,7 @@ class DeletionTests(TestCase):
|
|||
data = {
|
||||
'poem_set-TOTAL_FORMS': u'1',
|
||||
'poem_set-INITIAL_FORMS': u'1',
|
||||
'poem_set-MAX_NUM_FORMS': u'0',
|
||||
'poem_set-0-id': str(poem.pk),
|
||||
'poem_set-0-poet': str(poet.pk),
|
||||
'poem_set-0-name': u'test',
|
||||
|
|
@ -30,6 +31,7 @@ class DeletionTests(TestCase):
|
|||
data = {
|
||||
'poem_set-TOTAL_FORMS': u'1',
|
||||
'poem_set-INITIAL_FORMS': u'0',
|
||||
'poem_set-MAX_NUM_FORMS': u'0',
|
||||
'poem_set-0-id': u'',
|
||||
'poem_set-0-poem': u'1',
|
||||
'poem_set-0-name': u'x' * 1000,
|
||||
|
|
@ -58,6 +60,7 @@ class DeletionTests(TestCase):
|
|||
data = {
|
||||
'poem_set-TOTAL_FORMS': u'1',
|
||||
'poem_set-INITIAL_FORMS': u'1',
|
||||
'poem_set-MAX_NUM_FORMS': u'0',
|
||||
'poem_set-0-id': u'1',
|
||||
'poem_set-0-poem': u'1',
|
||||
'poem_set-0-name': u'x' * 1000,
|
||||
|
|
@ -88,6 +91,7 @@ class DeletionTests(TestCase):
|
|||
data = {
|
||||
'child_set-TOTAL_FORMS': u'1',
|
||||
'child_set-INITIAL_FORMS': u'0',
|
||||
'child_set-MAX_NUM_FORMS': u'0',
|
||||
'child_set-0-name': u'child',
|
||||
}
|
||||
formset = ChildFormSet(data, instance=school)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue