django-constance/tests/test_settings.py

20 lines
353 B
Python
Raw Normal View History

2010-08-25 12:55:01 +00:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
}
INSTALLED_APPS = (
'tests',
'constance',
)
2010-08-25 13:08:07 +00:00
CONSTANCE_CONNECTION_CLASS = 'tests.redis_mockup.Connection'
CONSTANCE_CONFIG = {
'INT_VALUE': (1, 'some int'),
'BOOL_VALUE': (True, 'true or false'),
'STRING_VALUE': ('Hello world', 'greetings'),
}