(self)
| 247 | } |
| 248 | |
| 249 | def test_empty_mode_caller_wins(self): |
| 250 | patch = _post_create_options_patch("empty", False, False, True, True) |
| 251 | assert patch == { |
| 252 | "skipCustomInstructions": False, |
| 253 | "customAgentsLocalOnly": False, |
| 254 | "coauthorEnabled": True, |
| 255 | "manageScheduleEnabled": True, |
| 256 | "installedPlugins": [], |
| 257 | } |
| 258 | |
| 259 | def test_copilot_cli_returns_none_when_unset(self): |
| 260 | assert _post_create_options_patch("copilot-cli", None, None, None, None) is None |
nothing calls this directly
no test coverage detected