()
| 2154 | |
| 2155 | #[test] |
| 2156 | fn check_version() { |
| 2157 | let mut output = String::new(); |
| 2158 | let _ = helm_exec_with_output( |
| 2159 | &["version"], |
| 2160 | &[], |
| 2161 | &mut |line| output.push_str(&line), |
| 2162 | &mut |_line| {}, |
| 2163 | &CommandKiller::never(), |
| 2164 | ); |
| 2165 | assert!(output.contains("Version:\"v3.20.0\"")); |
| 2166 | } |
| 2167 | |
| 2168 | #[test] |
| 2169 | fn test_release_exist() { |
nothing calls this directly
no test coverage detected