MCPcopy Index your code
hub / github.com/github/copilot-sdk / test_empty_mode_defaults

Method test_empty_mode_defaults

python/test_tool_set.py:239–247  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

237
238class TestPostCreatePatch:
239 def test_empty_mode_defaults(self):
240 patch = _post_create_options_patch("empty", None, None, None, None)
241 assert patch == {
242 "skipCustomInstructions": True,
243 "customAgentsLocalOnly": True,
244 "coauthorEnabled": False,
245 "manageScheduleEnabled": False,
246 "installedPlugins": [],
247 }
248
249 def test_empty_mode_caller_wins(self):
250 patch = _post_create_options_patch("empty", False, False, True, True)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected