add db prep
[matthijs/upstream/django-ldapdb.git] / ldapdb / tests.py
index d64ff4625a354ee00796591174db70cdb27b1ea9..e3c787b008d3db8a7100a73f88943670cbd11cbf 100644 (file)
 from django.test import TestCase
 from django.db.models.sql.where import Constraint, AND, OR
 
+from ldapdb.models.fields import CharField
 from ldapdb.models.query import WhereNode
 
+class FieldTestCase(TestCase):
+    def test_db_prep(self):
+        field = CharField()
+
 class WhereTestCase(TestCase):
     def test_single(self):
         where = WhereNode()