(config_files_manager)
| 182 | |
| 183 | @pytest.mark.parametrize("config_files_manager", defaults.CONFIG_FILES, indirect=True) |
| 184 | def test_set_key(config_files_manager): |
| 185 | _conf = config.read_cfg() |
| 186 | _conf.set_key("version", "2.0.0") |
| 187 | cfg = config.read_cfg() |
| 188 | assert cfg.settings == _new_settings |
| 189 | |
| 190 | |
| 191 | class TestReadCfg: |
nothing calls this directly
no test coverage detected
searching dependent graphs…