django-clickhouse/tests/test_config.py
2018-11-16 13:14:40 +05:00

16 lines
370 B
Python

from django.test import TestCase
from django_clickhouse 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