summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/othertests/manager_db.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/othertests/manager_db.py b/tests/othertests/manager_db.py
new file mode 100644
index 0000000000..936b6a21d5
--- /dev/null
+++ b/tests/othertests/manager_db.py
@@ -0,0 +1,23 @@
+from django.db import models
+
+def run_tests(verbosity=0):
+ class Insect(models.Model):
+ common_name = models.CharField(maxlength=64)
+ latin_name = models.CharField(maxlength=128)
+
+ class Meta:
+ app_label = 'manager_db'
+
+ m = Insect.objects
+ db = Insect.objects.db
+
+ assert db
+ assert db.connection
+ assert db.connection.cursor
+ assert db.backend
+ assert db.backend.quote_name
+ assert db.get_creation_module
+
+if __name__ == '__main__':
+ run_tests()
+ print "ok"