mirror of
https://github.com/django/django.git
synced 2025-07-22 20:55:17 +00:00
Fixed #20430 - Enable iterable of iterables for model choices
Allows for any iterable, not just lists or tuples, to be used as the inner item for a list of choices in a model.
This commit is contained in:
parent
a0c0cc924e
commit
a19e9d80ff
7 changed files with 52 additions and 7 deletions
14
tests/model_validation/tests.py
Normal file
14
tests/model_validation/tests.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
import io
|
||||
|
||||
from django.core import management
|
||||
from django.test import TestCase
|
||||
|
||||
|
||||
class ModelValidationTest(TestCase):
|
||||
|
||||
def test_models_validate(self):
|
||||
# All our models should validate properly
|
||||
# Validation Tests:
|
||||
# * choices= Iterable of Iterables
|
||||
# See: https://code.djangoproject.com/ticket/20430
|
||||
management.call_command("validate", stdout=io.BytesIO())
|
Loading…
Add table
Add a link
Reference in a new issue