(&self)
| 2116 | |
| 2117 | impl HelmTestCtx { |
| 2118 | fn cleanup(&self) { |
| 2119 | for chart in &self.charts { |
| 2120 | let ret = self |
| 2121 | .helm |
| 2122 | .uninstall(chart, &[], &CommandKiller::never(), &mut |_| {}, &mut |_| {}); |
| 2123 | assert!(ret.is_ok()) |
| 2124 | } |
| 2125 | } |
| 2126 | |
| 2127 | fn new(release_name: &str) -> HelmTestCtx { |
| 2128 | let charts = vec![ChartInfo::new_from_custom_namespace( |