django-configurations/tests/settings/main.py

67 lines
1.4 KiB
Python
Raw Normal View History

2012-07-21 13:56:04 +00:00
import os
2013-01-30 20:48:15 +00:00
import uuid
import django
from configurations import Configuration, pristinemethod
2012-07-21 13:56:04 +00:00
class Test(Configuration):
DEBUG = True
2012-07-21 13:56:04 +00:00
SITE_ID = 1
2013-01-30 20:48:15 +00:00
SECRET_KEY = str(uuid.uuid4())
2012-07-21 13:56:04 +00:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(os.path.dirname(__file__), 'test.db'),
}
}
INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.contenttypes',
'django.contrib.sites',
'django.contrib.auth',
'django.contrib.admin',
'tests',
2012-07-21 13:56:04 +00:00
]
ROOT_URLCONF = 'tests.urls'
2012-07-21 13:56:04 +00:00
if django.VERSION[:2] < (1, 6):
TEST_RUNNER = 'discover_runner.DiscoverRunner'
2012-07-21 13:56:04 +00:00
def TEMPLATE_CONTEXT_PROCESSORS(self):
return Configuration.TEMPLATE_CONTEXT_PROCESSORS + (
'tests.settings.base.test_callback',
)
ATTRIBUTE_SETTING = True
2012-07-21 13:56:04 +00:00
_PRIVATE_SETTING = 'ryan'
2012-07-21 13:56:04 +00:00
@property
def PROPERTY_SETTING(self):
2012-07-21 13:56:04 +00:00
return 1
def METHOD_SETTING(self):
return 2
2012-07-21 13:56:04 +00:00
LAMBDA_SETTING = lambda self: 3
PRISTINE_LAMBDA_SETTING = pristinemethod(lambda: 4)
@pristinemethod
def PRISTINE_FUNCTION_SETTING():
return 5
@classmethod
def pre_setup(cls):
cls.PRE_SETUP_TEST_SETTING = 6
@classmethod
def post_setup(cls):
cls.POST_SETUP_TEST_SETTING = 7