(self)
| 161 | ) |
| 162 | |
| 163 | def test_save(self): |
| 164 | client = make_fake_client() |
| 165 | image = client.images.get(FAKE_IMAGE_ID) |
| 166 | image.save() |
| 167 | client.api.get_image.assert_called_with( |
| 168 | FAKE_IMAGE_ID, DEFAULT_DATA_CHUNK_SIZE |
| 169 | ) |
| 170 | |
| 171 | def test_tag(self): |
| 172 | client = make_fake_client() |
nothing calls this directly
no test coverage detected