(self)
| 43 | ) |
| 44 | |
| 45 | def test_images_quiet(self): |
| 46 | self.client.images(all=True, quiet=True) |
| 47 | |
| 48 | fake_request.assert_called_with( |
| 49 | 'GET', |
| 50 | f"{url_prefix}images/json", |
| 51 | params={'only_ids': 1, 'all': 1}, |
| 52 | timeout=DEFAULT_TIMEOUT_SECONDS |
| 53 | ) |
| 54 | |
| 55 | def test_image_ids(self): |
| 56 | self.client.images(quiet=True) |