﻿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
20155	Django doesn't appear to actually follow Database naming rules	anonymous	nobody	"When specifying the following, it appears django doesn't actually use the specified database:


{{{
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',  # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'deathstar',
        'USER': 'root',
        'PASSWORD': 'root',
        'TEST_NAME': 'deathstar_celery',
    }
}
}}}

in a test I run:


{{{
User.objects.create_user(username='a', password='p')
import pdb; pdb.set_trace()
}}}

and in the database 'deathstar_celery' run:


{{{
select * from auth_user;
}}}

yet no results are returned.

"	Uncategorized	closed	Testing framework	1.5	Normal	worksforme	TEST_NAME database		Unreviewed	0	0	0	0	0	0
