django-configurations/tests/settings/main.py

75 lines
1.6 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
from configurations.values import BooleanValue
2012-07-21 13:56:04 +00:00
class Test(Configuration):
BASE_DIR = os.path.abspath(
os.path.join(os.path.dirname(
os.path.abspath(__file__)), os.pardir))
ENV_LOADED = BooleanValue(False)
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'
@property
def ALLOWED_HOSTS(self):
allowed_hosts = super(Test, self).ALLOWED_HOSTS[:]
allowed_hosts.append('base')
return allowed_hosts
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 # noqa: E731
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