aboutsummaryrefslogtreecommitdiff
path: root/tagging/tests/settings.py
blob: 1985118965a1d71b752c8ec80a94647041e33a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
DIRNAME = os.path.dirname(__file__)

DEFAULT_CHARSET = 'utf-8'

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(DIRNAME, 'tagging_test.db'),
    }
}

SECRET_KEY = 'liewoo1jie7TahTao3ci7xayee8gieg9ukee'

INSTALLED_APPS = (
    'django.contrib.contenttypes',
    'tagging',
    'tagging.tests',
)