(self, default_image: impl Into<String>)
| 103 | |
| 104 | #[must_use] |
| 105 | pub fn with_default_image(self, default_image: impl Into<String>) -> Self { |
| 106 | self.with_state(|state| state.default_image = default_image.into()); |
| 107 | self |
| 108 | } |
| 109 | |
| 110 | #[must_use] |
| 111 | pub fn calls(&self) -> Vec<FakeComputeDriverCall> { |
no test coverage detected