summaryrefslogtreecommitdiff
path: root/tests/invalid_models_tests
diff options
context:
space:
mode:
authorAdam DePue <adepue@hearsaycorp.com>2014-11-05 02:57:47 +0000
committerTim Graham <timograham@gmail.com>2014-11-13 11:03:01 +0100
commit2d12a599383efff4ac1914e4cc5cf3b08cb2ff53 (patch)
tree54bd7b41fa24ba29cfad7c0e5fdae8842de33f30 /tests/invalid_models_tests
parentd4bec655ae1c1122d7aea4bf8e58cc8a2b7bcc74 (diff)
[1.7.x] Fixed #23761 -- Fixed crash with MySQL validator and db_type is None.
The issue was fixed on master in e9103402c0fa873aea58a6a11dba510cd308cb84.
Diffstat (limited to 'tests/invalid_models_tests')
-rw-r--r--tests/invalid_models_tests/test_custom_fields.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/invalid_models_tests/test_custom_fields.py b/tests/invalid_models_tests/test_custom_fields.py
new file mode 100644
index 0000000000..03e65b599b
--- /dev/null
+++ b/tests/invalid_models_tests/test_custom_fields.py
@@ -0,0 +1,20 @@
+from django.db import models
+
+from .base import IsolatedModelsTestCase
+
+
+class CustomFieldTest(IsolatedModelsTestCase):
+
+ def test_none_column(self):
+ class NoColumnField(models.AutoField):
+ def db_type(self, connection):
+ # None indicates not to create a column in the database.
+ return None
+
+ class Model(models.Model):
+ field = NoColumnField(primary_key=True, db_column="other_field")
+ other_field = models.IntegerField()
+
+ field = Model._meta.get_field('field')
+ errors = field.check()
+ self.assertEqual(errors, [])