2013-05-18 03:31:41 +08:00
|
|
|
from django.core import management
|
|
|
|
from django.test import TestCase
|
2013-05-19 00:06:31 +08:00
|
|
|
from django.utils import six
|
2013-05-18 03:31:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
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
|
2013-05-19 00:06:31 +08:00
|
|
|
management.call_command("validate", stdout=six.StringIO())
|