diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2012-10-06 19:56:28 -0300 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2012-10-06 23:27:08 -0300 |
| commit | 35e8dc5169013437d71ae60e05c7f3356d86236e (patch) | |
| tree | 535a6c53f5fe3a47725bf55ba09099573e5ee7a0 /tests/regressiontests/backends/tests.py | |
| parent | ab232937355e8f7ed959ebafd16f8ac7b2a2f85d (diff) | |
Removed ad-hoc support for usage of short names of built-in DB backends.
This non-standard naming was deprecated in Django 1.2.
Diffstat (limited to 'tests/regressiontests/backends/tests.py')
| -rw-r--r-- | tests/regressiontests/backends/tests.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/regressiontests/backends/tests.py b/tests/regressiontests/backends/tests.py index cfa298253c..d284cfaac8 100644 --- a/tests/regressiontests/backends/tests.py +++ b/tests/regressiontests/backends/tests.py @@ -666,13 +666,6 @@ class ThreadTests(TestCase): self.assertEqual(len(exceptions), 0) -class BackendLoadingTests(TestCase): - def test_old_style_backends_raise_useful_exception(self): - six.assertRaisesRegex(self, ImproperlyConfigured, - "Try using django.db.backends.sqlite3 instead", - load_backend, 'sqlite3') - - class MySQLPKZeroTests(TestCase): """ Zero as id for AutoField should raise exception in MySQL, because MySQL |
