From 40c8ffad7249fd37ca1629f06d3ab6b129d84b21 Mon Sep 17 00:00:00 2001 From: Marten Kenbeek Date: Tue, 18 Sep 2018 18:19:18 +0200 Subject: Fixed #29768 -- Improved error message when an AppConfig has a typo in INSTALLED_APPS. --- tests/apps/tests.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/apps/tests.py b/tests/apps/tests.py index 2fec1d8b4c..cd22a4d45c 100644 --- a/tests/apps/tests.py +++ b/tests/apps/tests.py @@ -81,10 +81,18 @@ class AppsTests(SimpleTestCase): pass def test_no_such_app_config(self): - """ - Tests when INSTALLED_APPS contains an entry that doesn't exist. - """ - with self.assertRaises(ImportError): + msg = "No module named 'apps.NoSuchConfig'" + with self.assertRaisesMessage(ImportError, msg): + with self.settings(INSTALLED_APPS=['apps.NoSuchConfig']): + pass + + def test_no_such_app_config_with_choices(self): + msg = ( + "'apps.apps' does not contain a class 'NoSuchConfig'. Choices are: " + "'BadConfig', 'MyAdmin', 'MyAuth', 'NoSuchApp', 'PlainAppsConfig', " + "'RelabeledAppsConfig'." + ) + with self.assertRaisesMessage(ImproperlyConfigured, msg): with self.settings(INSTALLED_APPS=['apps.apps.NoSuchConfig']): pass -- cgit v1.3