env_vars should be written under the server's env key.
(config_dir: Path)
| 112 | |
| 113 | |
| 114 | def test_env_vars_written(config_dir: Path): |
| 115 | """env_vars should be written under the server's env key.""" |
| 116 | assert update_claude_config(file_spec="s.py:app", server_name="s", env_vars={"KEY": "val"}) |
| 117 | |
| 118 | assert _read_server(config_dir, "s")["env"] == {"KEY": "val"} |
| 119 | |
| 120 | |
| 121 | def test_existing_env_vars_merged_new_wins(config_dir: Path): |
nothing calls this directly
no test coverage detected