|
@ -6,7 +6,8 @@ from .settings import SAPL_APPS |
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.django_db |
|
|
pytestmark = pytest.mark.django_db |
|
|
|
|
|
|
|
|
for model in apps.get_models(): |
|
|
def test_charfiled_textfield(): |
|
|
|
|
|
for model in apps.get_models(): |
|
|
fields = model._meta.local_fields |
|
|
fields = model._meta.local_fields |
|
|
for field in fields: |
|
|
for field in fields: |
|
|
if (type(field).__name__ == 'CharField' or |
|
|
if (type(field).__name__ == 'CharField' or |
|
|