go into views_draft.py and tests in tests_draft.py; what's left in idrfc is wrapper code, templates and the ballot_icon templatetag - Legacy-Id: 6051
14 lines
360 B
Python
14 lines
360 B
Python
# Standard settings except we use SQLite, this is useful for speeding
|
|
# up tests that depend on the test database, try for instance:
|
|
#
|
|
# ./manage.py test --settings=settings_sqlitetest doc.ChangeStateTestCase
|
|
#
|
|
|
|
from settings import *
|
|
DATABASES = {
|
|
'default': {
|
|
'NAME': 'test.db',
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
},
|
|
}
|