(self)
| 32 | ) |
| 33 | |
| 34 | def test_images_name(self): |
| 35 | self.client.images('foo:bar') |
| 36 | |
| 37 | fake_request.assert_called_with( |
| 38 | 'GET', |
| 39 | f"{url_prefix}images/json", |
| 40 | params={'only_ids': 0, 'all': 0, |
| 41 | 'filters': '{"reference": ["foo:bar"]}'}, |
| 42 | timeout=DEFAULT_TIMEOUT_SECONDS |
| 43 | ) |
| 44 | |
| 45 | def test_images_quiet(self): |
| 46 | self.client.images(all=True, quiet=True) |