(self)
| 151 | client.api.history.assert_called_with(FAKE_IMAGE_ID) |
| 152 | |
| 153 | def test_remove(self): |
| 154 | client = make_fake_client() |
| 155 | image = client.images.get(FAKE_IMAGE_ID) |
| 156 | image.remove() |
| 157 | client.api.remove_image.assert_called_with( |
| 158 | FAKE_IMAGE_ID, |
| 159 | force=False, |
| 160 | noprune=False, |
| 161 | ) |
| 162 | |
| 163 | def test_save(self): |
| 164 | client = make_fake_client() |
nothing calls this directly
no test coverage detected