# -*- encoding: utf-8 -*- import os from datetime import datetime, date, time from decimal import Decimal # using the parent directory as the base for the test discovery TEST_DISCOVER_TOP_LEVEL = os.path.join(os.path.dirname(__file__), '..') TEST_RUNNER = 'discover_runner.DiscoverRunner' SECRET_KEY = 'cheese' DATABASE_ENGINE = 'sqlite3' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': ':memory:', } } INSTALLED_APPS = ( 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.auth', 'django.contrib.admin', 'south', 'constance', 'constance.backends.database', ) ROOT_URLCONF = 'tests.urls' CONSTANCE_CONNECTION_CLASS = 'tests.redis_mockup.Connection' CONSTANCE_CONFIG = { 'INT_VALUE': (1, 'some int'), 'LONG_VALUE': (123456L, 'some looong int'), 'BOOL_VALUE': (True, 'true or false'), 'STRING_VALUE': ('Hello world', 'greetings'), 'UNICODE_VALUE': ('Rivière-Bonjour'.decode('utf-8'), 'greetings'), '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'), } DEBUG = True