Browse Source

Cria teste para verificar campo null de CharField e TextField

pull/285/merge
Eduardo Edson Batista Cordeiro Alves 9 years ago
parent
commit
87607ad6b1
  1. 12
      sapl/test_general.py

12
sapl/test_general.py

@ -6,6 +6,18 @@ from .settings import SAPL_APPS
pytestmark = pytest.mark.django_db
for model in apps.get_models():
fields = model._meta.local_fields
for field in fields:
if (type(field).__name__ == 'CharField' or
type(field).__name__ == 'TextField'):
msg = 'Model = %s || Field = %s - %s - %s' % (
model.__name__,
field.attname,
type(field).__name__,
field.null)
raise AssertionError(msg)
def test_str_sanity():
# this simply a sanity check

Loading…
Cancel
Save