diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2009-05-19 23:13:33 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2009-05-19 23:13:33 +0000 |
| commit | 8c8625bde346d619befbdbb8a550368aa9b54b4d (patch) | |
| tree | 37e4a31b900b9e7fdb6a2d32a455d8832fb8887c /tests/regressiontests/model_forms_regress/tests.py | |
| parent | 2e24596001bce6e827e31510241834ccff76979f (diff) | |
Fixed #11149 -- Don't call save_form_data on file-type fields multiple times when saving a model form.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10826 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/model_forms_regress/tests.py')
| -rw-r--r-- | tests/regressiontests/model_forms_regress/tests.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/regressiontests/model_forms_regress/tests.py b/tests/regressiontests/model_forms_regress/tests.py index ccc272eae6..85e284b639 100644 --- a/tests/regressiontests/model_forms_regress/tests.py +++ b/tests/regressiontests/model_forms_regress/tests.py @@ -6,7 +6,7 @@ from django.forms.models import modelform_factory from django.conf import settings from django.test import TestCase -from models import Person, Triple, FilePathModel, Article, Publication +from models import Person, Triple, FilePathModel, Article, Publication, CustomFF class ModelMultipleChoiceFieldTests(TestCase): @@ -88,3 +88,16 @@ class ManyToManyCallableInitialTests(TestCase): <option value="2" selected="selected">Second Book</option> <option value="3">Third Book</option> </select> Hold down "Control", or "Command" on a Mac, to select more than one.</li>""") + +class CFFForm(forms.ModelForm): + class Meta: + model = CustomFF + +class CustomFieldSaveTests(TestCase): + def test_save(self): + "Regression for #11149: save_form_data should be called only once" + + # It's enough that the form saves without error -- the custom save routine will + # generate an AssertionError if it is called more than once during save. + form = CFFForm(data = {'f': None}) + form.save()
\ No newline at end of file |
