﻿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
29223	Dummy database backend's is_usable() method should return False	Wagner Macedo	nobody	"As far as I understood, the dummy database backend in `django.db.backends.dummy` is used when we set an empty dictionary in `DATABASES` setting, depicting a not usable database.

So, maybe it's a mistake this backend returns (always) that is usable:

{{{
    def is_usable(self):
        return True
}}}

This code can be seen in the repository [[https://github.com/django/django/blob/60e52a047e55bc4cd5a93a8bd4d07baed27e9a22/django/db/backends/dummy/base.py#L72-L73|here]]."	Bug	closed	Database layer (models, ORM)	2.0	Normal	needsinfo			Unreviewed	0	0	0	0	0	0
