(prefix: &str, suffix: &str)
| 304 | } |
| 305 | |
| 306 | fn concat(prefix: &str, suffix: &str) -> String { |
| 307 | let mut version_label: String = prefix.to_owned(); |
| 308 | version_label.push_str(suffix); |
| 309 | version_label |
| 310 | } |
| 311 | |
| 312 | fn check_cache_path(value_in_config_or_env: String, default_value: String) -> String { |
| 313 | let return_value = if !value_in_config_or_env.is_empty() { |
no outgoing calls
no test coverage detected