(self)
| 53 | ) |
| 54 | |
| 55 | def test_image_ids(self): |
| 56 | self.client.images(quiet=True) |
| 57 | |
| 58 | fake_request.assert_called_with( |
| 59 | 'GET', |
| 60 | f"{url_prefix}images/json", |
| 61 | params={'only_ids': 1, 'all': 0}, |
| 62 | timeout=DEFAULT_TIMEOUT_SECONDS |
| 63 | ) |
| 64 | |
| 65 | def test_images_filters(self): |
| 66 | self.client.images(filters={'dangling': True}) |