default: django-admin builtin commands fail with an error when no settings provided.
(self)
| 272 | self.write_settings("settings.py") |
| 273 | |
| 274 | def test_builtin_command(self): |
| 275 | """ |
| 276 | default: django-admin builtin commands fail with an error when no |
| 277 | settings provided. |
| 278 | """ |
| 279 | args = ["check", "admin_scripts"] |
| 280 | out, err = self.run_django_admin(args) |
| 281 | self.assertNoOutput(out) |
| 282 | self.assertOutput(err, "settings are not configured") |
| 283 | |
| 284 | def test_builtin_with_settings(self): |
| 285 | """ |
nothing calls this directly
no test coverage detected