updated settings.py for djangoitem tests to new django multi-db format

This commit is contained in:
Pablo Hoffman 2011-07-25 00:49:54 -03:00
parent 2ac08a713d
commit 209ecdf471
1 changed files with 6 additions and 2 deletions

View File

@ -1,2 +1,6 @@
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = ':memory:'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}