(self)
| 17 | |
| 18 | class ImageTest(BaseAPIClientTest): |
| 19 | def test_image_viz(self): |
| 20 | with pytest.raises(Exception): # noqa: B017 |
| 21 | self.client.images('busybox', viz=True) |
| 22 | self.fail('Viz output should not be supported!') |
| 23 | |
| 24 | def test_images(self): |
| 25 | self.client.images(all=True) |