MCPcopy
hub / github.com/django/django / test_builtin_command

Method test_builtin_command

tests/admin_scripts/tests.py:910–918  ·  view source on GitHub ↗

default: manage.py builtin commands succeed when default settings are appropriate.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 3

run_manageMethod · 0.80
assertNoOutputMethod · 0.80
assertOutputMethod · 0.80

Tested by

no test coverage detected