(self)
| 22 | self.fail('Viz output should not be supported!') |
| 23 | |
| 24 | def test_images(self): |
| 25 | self.client.images(all=True) |
| 26 | |
| 27 | fake_request.assert_called_with( |
| 28 | 'GET', |
| 29 | f"{url_prefix}images/json", |
| 30 | params={'only_ids': 0, 'all': 1}, |
| 31 | timeout=DEFAULT_TIMEOUT_SECONDS |
| 32 | ) |
| 33 | |
| 34 | def test_images_name(self): |
| 35 | self.client.images('foo:bar') |