mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-11 03:46:46 +03:00
bac333d03a
2) Some fixes
15 lines
369 B
Python
15 lines
369 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 |