mirror of
https://github.com/django/django.git
synced 2024-12-23 01:25:58 +00:00
Refs #34119 -- Skipped test_callable_default_hidden_widget_value_not_overridden when JSONField is not supported.
This commit is contained in:
parent
20d575b101
commit
60a7bd8986
@ -4,7 +4,7 @@ from django.core.files.uploadedfile import SimpleUploadedFile
|
|||||||
from django.db import models
|
from django.db import models
|
||||||
from django.forms import CharField, FileField, Form, ModelForm
|
from django.forms import CharField, FileField, Form, ModelForm
|
||||||
from django.forms.models import ModelFormMetaclass
|
from django.forms.models import ModelFormMetaclass
|
||||||
from django.test import SimpleTestCase, TestCase
|
from django.test import SimpleTestCase, TestCase, skipUnlessDBFeature
|
||||||
|
|
||||||
from ..models import (
|
from ..models import (
|
||||||
BoundaryModel,
|
BoundaryModel,
|
||||||
@ -203,6 +203,7 @@ class ModelFormCallableModelDefault(TestCase):
|
|||||||
""",
|
""",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@skipUnlessDBFeature("supports_json_field")
|
||||||
def test_callable_default_hidden_widget_value_not_overridden(self):
|
def test_callable_default_hidden_widget_value_not_overridden(self):
|
||||||
class FieldWithCallableDefaultsModel(models.Model):
|
class FieldWithCallableDefaultsModel(models.Model):
|
||||||
int_field = models.IntegerField(default=lambda: 1)
|
int_field = models.IntegerField(default=lambda: 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user