Refs #14567 -- Fixed failing test that wasn't being run.
This commit is contained in:
parent
58b3a974fc
commit
a98465c040
|
@ -12,7 +12,7 @@ from .test_input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests
|
||||||
SimpleDateFormatTests, LocalizedDateTimeTests,
|
SimpleDateFormatTests, LocalizedDateTimeTests,
|
||||||
CustomDateTimeInputFormatsTests, SimpleDateTimeFormatTests)
|
CustomDateTimeInputFormatsTests, SimpleDateTimeFormatTests)
|
||||||
from .test_media import FormsMediaTestCase, StaticFormsMediaTestCase
|
from .test_media import FormsMediaTestCase, StaticFormsMediaTestCase
|
||||||
from .tests import (TestTicket12510, ModelFormCallableModelDefault,
|
from .tests import (TestTicket12510, TestTicket14567, ModelFormCallableModelDefault,
|
||||||
FormsModelTestCase, RelatedModelFormTests)
|
FormsModelTestCase, RelatedModelFormTests)
|
||||||
from .test_regressions import FormsRegressionsTestCase
|
from .test_regressions import FormsRegressionsTestCase
|
||||||
from .test_util import FormsUtilTestCase
|
from .test_util import FormsUtilTestCase
|
||||||
|
|
|
@ -46,7 +46,8 @@ class TestTicket14567(TestCase):
|
||||||
"""
|
"""
|
||||||
def test_empty_queryset_return(self):
|
def test_empty_queryset_return(self):
|
||||||
"If a model's ManyToManyField has blank=True and is saved with no data, a queryset is returned."
|
"If a model's ManyToManyField has blank=True and is saved with no data, a queryset is returned."
|
||||||
form = OptionalMultiChoiceModelForm({'multi_choice_optional': '', 'multi_choice': ['1']})
|
option = ChoiceOptionModel.objects.create(name='default')
|
||||||
|
form = OptionalMultiChoiceModelForm({'multi_choice_optional': '', 'multi_choice': [option.pk]})
|
||||||
self.assertTrue(form.is_valid())
|
self.assertTrue(form.is_valid())
|
||||||
# Check that the empty value is a QuerySet
|
# Check that the empty value is a QuerySet
|
||||||
self.assertTrue(isinstance(form.cleaned_data['multi_choice_optional'], models.query.QuerySet))
|
self.assertTrue(isinstance(form.cleaned_data['multi_choice_optional'], models.query.QuerySet))
|
||||||
|
|
Loading…
Reference in New Issue