def _(tmp=temp_config_invalid): with raises(click.FileError): read_config_toml(Path(tempfile.gettempdir()), tmp.name)
def _(tmp=temp_config_file_hyphens): conf = read_config_toml(Path(tempfile.gettempdir()), tmp.name) assert "some_key" in conf assert conf["some_key"] == "some-value"
def _(tmp=temp_config_missing): conf = read_config_toml(Path(tempfile.gettempdir()), tmp.name) assert conf == {}
def _(): conf = read_config_toml(Path(tempfile.gettempdir()), "doesnt_exist.toml") assert conf == {}
def _(tmp=temp_config_file): conf = read_config_toml(Path(tempfile.gettempdir()), tmp.name) assert "path" in conf assert conf["path"] == "test_path"
def _(tmp=temp_config_file): conf = read_config_toml(Path(tempfile.gettempdir()), tmp.name) assert conf == {"path": "test_path"}