mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-14 13:26:33 +03:00
15 lines
364 B
Python
15 lines
364 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.BATCH_SIZE)
|
||
|
|
||
|
def test_not_lib_prop(self):
|
||
|
with self.assertRaises(AttributeError):
|
||
|
config.SECRET_KEY
|