django-clickhouse/tests/test_config.py
M1ha abe0ae45c5 Added QuerySet that determines db with router help.
Added using(), create(), bulk_create(), all() methods to QuerySet
2018-11-28 15:30:19 +05:00

16 lines
384 B
Python

from django.test import TestCase
from django_clickhouse.configuration import config
class ConfigTest(TestCase):
def test_default(self):
self.assertEqual(5, config.SYNC_DELAY)
def test_value(self):
self.assertEqual(5000, config.SYNC_BATCH_SIZE)
def test_not_lib_prop(self):
with self.assertRaises(AttributeError):
config.SECRET_KEY