﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25351	Add example for database test settings	m4r0v3r	José Carlos Menezes	"Hello, 

The documentation for the Database Test Settings is lacking and can leave users such as me confused, if a simple example such as this was included it would help :)

here:

https://docs.djangoproject.com/en/1.8/ref/settings/#std:setting-DATABASE-TEST

{{{#!python
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'USER': 'jenkins',
        'NAME': 'django',
        'TEST': {
            'NAME': 'test_another_name',
        },
    },
}
}}}
Thanks to MarkusH for the example and help :)"	Cleanup/optimization	closed	Documentation	1.8	Normal	fixed			Ready for checkin	1	0	0	0	1	0
