(self)
| 2402 | @isolate_apps("test_utils", attr_name="class_apps") |
| 2403 | class IsolatedAppsTests(SimpleTestCase): |
| 2404 | def test_installed_apps(self): |
| 2405 | self.assertEqual( |
| 2406 | [app_config.label for app_config in self.class_apps.get_app_configs()], |
| 2407 | ["test_utils"], |
| 2408 | ) |
| 2409 | |
| 2410 | def test_class_decoration(self): |
| 2411 | class ClassDecoration(models.Model): |
nothing calls this directly
no test coverage detected