2013-07-29 19:19:04 +02:00
|
|
|
from __future__ import unicode_literals
|
2011-10-13 18:04:12 +00:00
|
|
|
|
2014-03-14 22:18:20 +00:00
|
|
|
from django.db import connection
|
2015-08-12 09:26:57 -04:00
|
|
|
from django.test import SimpleTestCase
|
2014-04-11 23:58:56 -04:00
|
|
|
|
2015-08-12 09:26:57 -04:00
|
|
|
from .fields import CustomTypedField
|
2014-04-11 23:58:56 -04:00
|
|
|
|
2014-03-14 22:18:20 +00:00
|
|
|
|
2015-04-17 17:38:20 -04:00
|
|
|
class TestDbType(SimpleTestCase):
|
2014-03-14 22:18:20 +00:00
|
|
|
|
|
|
|
def test_db_parameters_respects_db_type(self):
|
|
|
|
f = CustomTypedField()
|
|
|
|
self.assertEqual(f.db_parameters(connection)['type'], 'custom_field')
|