(self)
| 237 | |
| 238 | class 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) |
nothing calls this directly
no test coverage detected