Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/field_subclassing/tests.py
blob: d291276c1fce97776e38c0c71d85638f6f1b84c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from __future__ import unicode_literals

from django.db import connection
from django.test import SimpleTestCase

from .fields import CustomTypedField


class TestDbType(SimpleTestCase):

    def test_db_parameters_respects_db_type(self):
        f = CustomTypedField()
        self.assertEqual(f.db_parameters(connection)['type'], 'custom_field')