From bc299bd4085d3c5878ebd2151dcb85f0fa17014c Mon Sep 17 00:00:00 2001 From: jlaine Date: Mon, 11 Apr 2011 11:22:54 +0000 Subject: [PATCH] bypass test database creation git-svn-id: https://svn.bolloretelecom.eu/opensource/django-ldapdb/trunk@1030 e071eeec-0327-468d-9b6a-08194a12b294 --- ldapdb/backends/ldap/base.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/ldapdb/backends/ldap/base.py b/ldapdb/backends/ldap/base.py index 85b857f..79d937f 100644 --- a/ldapdb/backends/ldap/base.py +++ b/ldapdb/backends/ldap/base.py @@ -35,6 +35,22 @@ import ldap from django.db.backends import BaseDatabaseFeatures, BaseDatabaseOperations, BaseDatabaseWrapper +from django.db.backends.creation import BaseDatabaseCreation + +class DatabaseCreation(BaseDatabaseCreation): + def create_test_db(self, verbosity=1, autoclobber=False): + """ + Creates a test database, prompting the user for confirmation if the + database already exists. Returns the name of the test database created. + """ + pass + + def destroy_test_db(self, old_database_name, verbosity=1): + """ + Destroy a test database, prompting the user for confirmation if the + database already exists. Returns the name of the test database created. + """ + pass class DatabaseCursor(object): def __init__(self, ldap_connection): @@ -55,6 +71,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): super(DatabaseWrapper, self).__init__(*args, **kwargs) self.charset = "utf-8" + self.creation = DatabaseCreation(self) self.features = DatabaseFeatures(self) self.ops = DatabaseOperations() -- 2.30.2