|
@@ -31,6 +31,13 @@ class ConnectionHandlerTests(SimpleTestCase):
|
|
|
with self.assertRaisesMessage(ImproperlyConfigured, msg):
|
|
|
conns[DEFAULT_DB_ALIAS].ensure_connection()
|
|
|
|
|
|
+ def test_no_default_database(self):
|
|
|
+ DATABASES = {'other': {}}
|
|
|
+ conns = ConnectionHandler(DATABASES)
|
|
|
+ msg = "You must define a 'default' database."
|
|
|
+ with self.assertRaisesMessage(ImproperlyConfigured, msg):
|
|
|
+ conns['other'].ensure_connection()
|
|
|
+
|
|
|
|
|
|
class DatabaseErrorWrapperTests(TestCase):
|
|
|
|