2014-03-15 06:18:20 +08:00
|
|
|
from django.db import connection
|
2015-08-12 21:26:57 +08:00
|
|
|
from django.test import SimpleTestCase
|
2014-04-12 11:58:56 +08:00
|
|
|
|
2015-08-12 21:26:57 +08:00
|
|
|
from .fields import CustomTypedField
|
2014-04-12 11:58:56 +08:00
|
|
|
|
2014-03-15 06:18:20 +08:00
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class TestDbType(SimpleTestCase):
|
2014-03-15 06:18:20 +08:00
|
|
|
|
|
|
|
def test_db_parameters_respects_db_type(self):
|
|
|
|
f = CustomTypedField()
|
|
|
|
self.assertEqual(f.db_parameters(connection)['type'], 'custom_field')
|