default: manage.py builtin commands succeed when default settings are appropriate.
(self)
| 908 | self.write_settings("settings.py") |
| 909 | |
| 910 | def test_builtin_command(self): |
| 911 | """ |
| 912 | default: manage.py builtin commands succeed when default settings are |
| 913 | appropriate. |
| 914 | """ |
| 915 | args = ["check", "admin_scripts"] |
| 916 | out, err = self.run_manage(args) |
| 917 | self.assertNoOutput(err) |
| 918 | self.assertOutput(out, SYSTEM_CHECK_MSG) |
| 919 | |
| 920 | def test_builtin_with_settings(self): |
| 921 | """ |
nothing calls this directly
no test coverage detected