summaryrefslogtreecommitdiff
path: root/tests/appcachetests/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/appcachetests/runtests.py')
-rw-r--r--tests/appcachetests/runtests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/appcachetests/runtests.py b/tests/appcachetests/runtests.py
index 0a64d9f11a..ff6deaf7ed 100644
--- a/tests/appcachetests/runtests.py
+++ b/tests/appcachetests/runtests.py
@@ -97,6 +97,14 @@ class GetAppsTests(AppCacheTestCase):
self.assertEqual(cache.get_apps(), [])
self.assertTrue(cache.app_cache_ready())
+ def test_db_prefix_exception(self):
+ """
+ Test that an exception is raised if two app instances
+ have the same db_prefix attribute
+ """
+ settings.INSTALLED_APPS = ('nomodel_app.MyApp', 'model_app.MyOtherApp',)
+ self.assertRaises(ImproperlyConfigured, cache.get_apps)
+
class GetAppTests(AppCacheTestCase):
"""Tests for the get_app function"""