django-constance/tests/testproject/settings.py

40 lines
1.1 KiB
Python
Raw Normal View History

# -*- encoding: utf-8 -*-
from datetime import datetime, date, time
2010-09-03 12:38:43 +00:00
from decimal import Decimal
2010-08-25 12:55:01 +00:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
}
INSTALLED_APPS = (
2010-11-12 14:06:59 +00:00
'django.contrib.sessions',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.admin',
2010-08-25 12:55:01 +00:00
'constance',
'constance.backends.database',
2010-11-12 14:06:59 +00:00
2010-11-12 14:38:59 +00:00
'testproject.test_app',
2010-08-25 12:55:01 +00:00
)
2010-11-12 14:46:14 +00:00
ROOT_URLCONF = 'testproject.urls'
2010-11-12 14:06:59 +00:00
2010-11-12 14:38:59 +00:00
CONSTANCE_CONNECTION_CLASS = 'testproject.test_app.redis_mockup.Connection'
2010-08-25 13:08:07 +00:00
CONSTANCE_CONFIG = {
'INT_VALUE': (1, 'some int'),
'LONG_VALUE': (123456L, 'some looong int'),
2010-08-25 13:08:07 +00:00
'BOOL_VALUE': (True, 'true or false'),
'STRING_VALUE': ('Hello world', 'greetings'),
'UNICODE_VALUE': ('Rivière-Bonjour'.decode('utf-8'), 'greetings'),
2010-09-03 12:38:43 +00:00
'DECIMAL_VALUE': (Decimal('0.1'), 'the first release version'),
'DATETIME_VALUE': (datetime(2010, 8, 23, 11, 29, 24), 'time of the first commit'),
'FLOAT_VALUE': (3.1415926536, 'PI'),
'DATE_VALUE': (date(2010, 12, 24), 'Merry Chrismas'),
'TIME_VALUE': (time(23, 59, 59), 'And happy New Year'),
2010-08-25 13:08:07 +00:00
}