mirror of
https://github.com/django/django.git
synced 2025-03-25 08:40:45 +00:00
[1.8.x] Refs #24483 -- Added a test for deconstruction of Field.choices
Backport of b4a56ed4f55502239cb11b57f0fa75baa0a97640 from master
This commit is contained in:
parent
571e093a25
commit
247251c2e1
@ -69,6 +69,13 @@ class FieldDeconstructionTests(TestCase):
|
||||
self.assertEqual(args, [])
|
||||
self.assertEqual(kwargs, {"max_length": 65, "null": True, "blank": True})
|
||||
|
||||
def test_char_field_choices(self):
|
||||
field = models.CharField(max_length=1, choices=(("A", "One"), ("B", "Two")))
|
||||
name, path, args, kwargs = field.deconstruct()
|
||||
self.assertEqual(path, "django.db.models.CharField")
|
||||
self.assertEqual(args, [])
|
||||
self.assertEqual(kwargs, {"choices": [("A", "One"), ("B", "Two")], "max_length": 1})
|
||||
|
||||
def test_csi_field(self):
|
||||
field = models.CommaSeparatedIntegerField(max_length=100)
|
||||
name, path, args, kwargs = field.deconstruct()
|
||||
|
Loading…
x
Reference in New Issue
Block a user