summaryrefslogtreecommitdiff
path: root/tests/empty
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-11 23:31:34 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-17 10:17:44 +0100
commit8662654d6d50e4d89f771a757ae5fc83c6b74db0 (patch)
tree1b9d98842d25a5d15a389bcc0dcefdc4fcffef4f /tests/empty
parent334551339de38569ac3530886e3f9cc681190224 (diff)
downloaddjango-8662654d6d50e4d89f771a757ae5fc83c6b74db0.tar.gz
Removed module-level functions for the app cache.
Since the original ones in django.db.models.loading were kept only for backwards compatibility, there's no need to recreate them. However, many internals of Django still relied on them. They were also imported in django.db.models. They never appear in the documentation, except a quick mention of get_models and get_app in the 1.2 release notes to document an edge case in GIS. I don't think that makes them a public API. This commit doesn't change the overall amount of global state but clarifies that it's tied to the app_cache object instead of hiding it behind half a dozen functions.
Diffstat (limited to 'tests/empty')
-rw-r--r--tests/empty/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/empty/tests.py b/tests/empty/tests.py
index 2a9f568aea..b8476fc73d 100644
--- a/tests/empty/tests.py
+++ b/tests/empty/tests.py
@@ -1,4 +1,4 @@
-from django.apps.cache import get_app
+from django.apps import app_cache
from django.core.exceptions import ImproperlyConfigured
from django.test import TestCase
from django.test.utils import override_settings
@@ -33,4 +33,4 @@ class NoModelTests(TestCase):
def test_no_models(self):
with six.assertRaisesRegex(self, ImproperlyConfigured,
'App with label no_models is missing a models.py module.'):
- get_app('no_models')
+ app_cache.get_app('no_models')