App Engine Python SDK version 1.9.12
[gae.git] / python / lib / django-1.2 / tests / test_sqlite.py
blobde8bf9339c75f9cec15de39e30582023c3fa23fa
1 # This is an example test settings file for use with the Django test suite.
3 # The 'sqlite3' backend requires only the ENGINE setting (an in-
4 # memory database will be used). All other backends will require a
5 # NAME and potentially authentication information. See the
6 # following section in the docs for more information:
8 # http://docs.djangoproject.com/en/dev/internals/contributing/#unit-tests
10 # The different databases that Django supports behave differently in certain
11 # situations, so it is recommended to run the test suite against as many
12 # database backends as possible. You may want to create a separate settings
13 # file for each of the backends you test against.
15 DATABASES = {
16 'default': {
17 'ENGINE': 'django.db.backends.sqlite3'
19 'other': {
20 'ENGINE': 'django.db.backends.sqlite3',