Load an app that provides an AppConfig class.
(self)
| 117 | self.assertIsInstance(config, AppConfig) |
| 118 | |
| 119 | def test_one_config_app(self): |
| 120 | """Load an app that provides an AppConfig class.""" |
| 121 | with self.settings(INSTALLED_APPS=["apps.one_config_app"]): |
| 122 | config = apps.get_app_config("one_config_app") |
| 123 | self.assertIsInstance(config, OneConfig) |
| 124 | |
| 125 | def test_two_configs_app(self): |
| 126 | """Load an app that provides two AppConfig classes.""" |
nothing calls this directly
no test coverage detected